-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mustards3.html
90 lines (58 loc) · 2.94 KB
/
Mustards3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>Welcome to The Website...</title>
<link rel="stylesheet" type="text/css" href="Digital Identity.css">
</head>
<script>
function myFunction(){
document.getElementById('textbox').value = document.getElementById('myradio').value;
}
</script>
<body>
<div id = "header">
<h1>DIGITAL IDENTITY</h1>
<p><b><i>                        Smart Nagarik.........</i></b></p>
</div>
<div id="line">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</div>
<h2>Log In To Your Identity Card</h2>
<form>
<input type="text" id="username" placeholder="Username"><br>
<input type="password" id="pass" placeholder="Password"><br>
<button id="login">Log In</button>
</form><br><br>
<h3>Don't have an identity. Register and become a Smart Nagarik......</h3>
<button id="register"><b><i><a href="Register.html">Register Now</a></i></b></button>
<br />
<input type="radio" name = " colors" value = " red" id ="textbox" onclick="myFunction()" > Red color
<input type="text" name="colors" id="myradio">
</body>
</html>
<!-- <!DOCTYPE html>
<html>
<head>
<title>Welcome to The Website...</title>
<link rel="stylesheet" type="text/css" href="Digital Identity.css">
</head>
<body>
<div id = "header">
<h1>DIGITAL IDENTITY</h1>
<p><b><i>                        Smart Nagarik.........</i></b></p>
</div>
<div id="line">---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</div>
<h2>Log In To Your Identity Card</h2>
<form>
<input type="text" id="username" placeholder="Username"><br>
<input type="password" id="pass" placeholder="Password"><br>
<button id="login">Log In</button>
</form><br><br>
<h3>Don't have an identity. Register and become a Smart Nagarik......</h3>
<button id="register"><b><i><a href="Register.html">Register Now</a></i></b></button>
<br />
<input type="radio" name = " colors" value = " red" id ="myradio" onclick="myFunction()" > Red color
<input type="input" name="colors" value=" red" id="myradio" >
</body>
<script src="Digital Identity.js">
</script>
</html>
-->