forked from Ratan5545/Hospital_management_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Registration.html
171 lines (151 loc) · 3.47 KB
/
Registration.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register Page</title>
</head>
<body>
<section class="sign_up">
<div class="container">
<h1>Register</h1>
<p id="create">Create your account. It's free and only takes a minute</p>
<div class="name">
<input type="text" placeholder="First Name" required>
<input type="text" placeholder="Last Name" required>
</div>
<div class="details">
<input type="email" placeholder="Email" required>
<input type="password" placeholder="Passowrd" required>
<input type="password" placeholder="Confirm Password" required>
</div>
<div class="checkbox">
<input type="checkbox" class="check" required>
<p class="check">I accept the<span class="term"><a href="#">Terms of use</a></span> & <span><a id="privacy" href="#">Privacy Policy</a></span></p>
</div>
<a href="" id="register_btn">Register Now</a>
</div>
<div class="signIn">
<p>Already have an account?<span><a href="Login.html" style="
display: inline-block;
padding: 10px;
background-color: blue;
color: white;
text-decoration: none;
border-radius: 5px;">Login</a></span></p>
</div>
</section>
<style>
body {
background-image: url('reg.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
<style>
*{
padding: 0;
margin: 0;
font-family: sans-serif;
}
.sign_up{
height: 100vh;
background: url(img/background.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.container{
background-color: white;
width: 380px;
height: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1{
color: black;
font-size: 30px;
}
h1::before{
content: "";
display: block;
width: 100px;
height: 3px;
background: black;
left: 540px;
top: 29%;
position: absolute;
}
h1::after{
content: "";
display: block;
width: 100px;
height: 3px;
background: black;
right: 540px;
top: 29%;
position: absolute;
}
#create{
font-size: 12px;
}
input{
padding: 6px;
margin-top: 10px;
margin-left: 10px;
}
.details input{
width: 335px;
}
.details{
display: flex;
flex-direction: column;
}
.check{
display: inline-block;
}
#register_btn{
text-decoration: none;
padding: 10px 120px;
border: 1px solid green;
background: green;
color: white;
border-radius: 8px;
margin-top: 20px;
}
#register_btn:hover{
background: transparent;
color: black;
border: 1px solid black;
transition: .5s;
}
.term a{
color: green;
}
#privacy{
color: green;
}
.signIn{
display: block;
color: black;
position: absolute;
top: 81%;
}
.checkbox{
width: 355px;
margin-top: 10px;
}
.signIn p span a{
color: black;
margin-left: 6px;
}
</style>
</body>
</html>