-
Notifications
You must be signed in to change notification settings - Fork 0
/
reg3.htm
86 lines (63 loc) · 1.49 KB
/
reg3.htm
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
<html>
<head>
<title>
Registration Page
</title>
<style>
body{
text-align:center;
font-size:18px;
color: white;
background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('1.jpeg');
height: 80%;
background-position: center;
background-repeat: no-repeat;
background-size:100% 100vh;
background-attachment:fixed;
}
ul.breadcrumb {
padding: 10px 16px;
list-style: none;
background-color: sienna;
}
ul.breadcrumb li {
display: inline;
font-size: 18px;
}
ul.breadcrumb li+li:before {
padding: 8px;
color: black;
content: "/\00a0";
}
ul.breadcrumb li a {
color: #0275d8;
text-decoration: none;
}
ul.breadcrumb li a:hover {
color: #01447e;
text-decoration: underline;
}
</style>
</head>
<!-- <body style="background-color: aqua">-->
<body>
<ul class="breadcrumb">
<li><a href="#">Home</a></li>
<li>Register</li>
</ul>
<h1>REGISTER</h1>
Name :
<input type="text" placeholder="Name" name="name"><br><br>
Email :
<input type="text" placeholder="Email" name="email"><br><br>
Password:
<input type="password" placeholder="Password" name="password"><br><br>
ConfPass:
<input type="password" placeholder="Confirm Password" name="conpassword"><br><br>
Phone no:
<input type="Phone" placeholder="98480*****" name="telephone"><br><br>
<input type="Submit" value="Submit">
</table>
</form>
</body>
</html>