-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (110 loc) · 4.31 KB
/
index.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
<!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>Log In / Sign Up</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="section">
<div class="container">
<div class="row full-height justify-content-center">
<div class="col-12 text-center align-self-center py-5">
<div class="section pb-5 pt-5 pt-sm-2 text-center">
<h6 class="mb-0 pb-3">
<span>Log In </span><span>Sign Up</span>
</h6>
<input
class="checkbox"
type="checkbox"
id="reg-log"
name="reg-log"
/>
<label for="reg-log"></label>
<div class="card-3d-wrap mx-auto">
<div class="card-3d-wrapper">
<div class="card-front">
<div class="center-wrap">
<div class="section text-center">
<h4 class="mb-4 pb-3">Log In</h4>
<div class="form-group">
<input
type="email"
name="logemail"
class="form-style"
placeholder="Your Email"
id="logemail"
autocomplete="off"
/>
<i class="input-icon uil uil-at"></i>
</div>
<div class="form-group mt-2">
<input
type="password"
name="logpass"
class="form-style"
placeholder="Your Password"
id="logpass"
autocomplete="off"
/>
<i class="input-icon uil uil-lock-alt"></i>
</div>
<a href="#" class="btn mt-4">submit</a>
<p class="mb-0 mt-4 text-center">
<a href="#0" class="link">Forgot your password?</a>
</p>
</div>
</div>
</div>
<div class="card-back">
<div class="center-wrap">
<div class="section text-center">
<h4 class="mb-4 pb-3">Sign Up</h4>
<div class="form-group">
<input
type="text"
name="logname"
class="form-style"
placeholder="Your Full Name"
id="logname"
autocomplete="off"
/>
<i class="input-icon uil uil-user"></i>
</div>
<div class="form-group mt-2">
<input
type="email"
name="logemail"
class="form-style"
placeholder="Your Email"
id="logemail"
autocomplete="off"
/>
<i class="input-icon uil uil-at"></i>
</div>
<div class="form-group mt-2">
<input
type="password"
name="logpass"
class="form-style"
placeholder="Your Password"
id="logpass"
autocomplete="off"
/>
<i class="input-icon uil uil-lock-alt"></i>
</div>
<a href="#" class="btn mt-4">submit</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>