-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.54 KB
/
index.html
File metadata and controls
40 lines (35 loc) · 1.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="bgc1">
<h1>LOGIN PAGE</h1>
<br>
<p id="txtt">please enter your credentials below</p>
<div id="bgc2">
<div id="det">
<h2 id="userdetails">User details</h2>
</div>
<br>
<br>
<p class="ip">Enter your name*:<input type="text" name="name" required></p>
<br>
<P class="ip">Enter your gender*: male*<input type="radio" name="male" required> female*<input type="radio" name="female" required></p>
<br>
<p class="ip">Address:<textarea name="adress" id="adress"></textarea></p>
<br>
<p class="ip">Email: <input type="email" name="email" id="email" > </p>
<br>
<P class="ip">DOB:<input type="date" name="exp date" id="exp date"></P>
<br>
<p class="ip"> <input type="submit" value="submit"></p>
<p class="ip"> <input type="reset" value="reset"></p>
</div>
</div>
</body>
</html>