-
Notifications
You must be signed in to change notification settings - Fork 0
/
hnhnhm.html
131 lines (90 loc) · 2.54 KB
/
hnhnhm.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
<!DOCTYPE>
<html>
<head>
<title>
login form to movietime
</title>
<style>
body{
background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(buzz1.jpg) ;
height: 100vh;
background-size: cover;
background-position: center;
}
.login-page{
width: 360px;
padding: 10% 0 0;
margin: auto;
}
.form{
position: relative;
text-align: center;
z-index: 1;
max-width: 360px;
background: #1c8ac9;
margin: 0 auto 100px ;
padding: 45px;
}
.form input{
font-family: "Roboto",sans-serif;
outline: 1;
background: #f2f2f2;
width: 100%;
border: 0;
margin: 0 0 15px;
padding:15px ;
box-sizing: border-box;
font-size: 14px;
}
.form button{
font-family: "Roboto",sans-serif;
outline: 0;
width: 100%;
text-transform: uppercase;
background: #4caf50;
color:#ffffff ;
border: 0;
padding: 15px;
font-size: 14px;
cursor: pointer;
}
.form button:hover,form button:active{
background: #43A047;
}
.form .me{
margin: 15px;
color: aliceblue;
font-size: 12px;
}
.form .me a{
color: #5e4caf;
text-decoration: none;
}
.form .register-form
{
display: none;
}
</style>
</head>
<body>
<div class="login-page">
<div class="form">
<form class="register-form" action="registration.php" method="POST">
<input type="text" name="User Name" placeholder="Enter your name">
<input type="Email" name="Email" placeholder="Enter your Email">
<input type="password" name="password" placeholder="Enter your password">
<button>Create</button>
<p class="me" >Already registerd?.<a href="#">Login</a></p>
</form>
<form class="login-form" action="validation.php" method="POST">
<input type="text" name="User Name" placeholder="Enter your User Name">
<input type="password" name="password" placeholder="Enter your password">
<button>Login</button>
<p class="me">Not registered?<a href="#">Register</a></p>
</form>
</div>
</div>
<script src='https://code.jquery.com/jquery-3.4.1.min.js'>
</script>
</body>
</htmL>