-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (67 loc) · 3.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<link rel="stylesheet" href="./login_reg/login.css">
</head>
<body>
<div class="main_body">
<div class="flip-container">
<div class="flipper">
<div class="front">
<menu class="login">
<section class="login_form">
<span class="heading" id="l_head">Login Page</span>
<div class="login-id">
<span for=""><i class="fa-solid fa-id-badge"></i> </span>
<input type="email" placeholder="Enter Your Email" id="login_id">
</div>
<div class="pass">
<span for="" > <i class="fa-solid fa-key"></i> </span>
<input type="password" placeholder="Enter Password" id="pass_1">
</div>
<section class="group">
<button class="btn">
<i class="fa-solid fa-right-to-bracket"></i>
   Login
</button>
<a href="#" class="create" onclick="flipPages()">Don't Have An Account? Create One</a>
</section>
</section>
</menu>
</div>
<div class="back">
<menu class="reg">
<section class="main">
<span class="heading" id="r_head">New User</span>
<div class="name">
<i class="fa-solid fa-id-card"></i>
<input type="text" placeholder="Enter Name" id="n_1">
</div>
<div class="email">
<i class="fa-solid fa-envelope"></i>
<input type="email" placeholder="Enter Your Email" id="email">
</div>
<div class="pass">
<i class="fa-solid fa-unlock"></i>
<input type="password" placeholder="Enter Your Password" id="pass">
</div>
<div class="conform">
<i class="fa-solid fa-lock-open"></i>
<input type="password" placeholder="Conform Password" id="conform">
</div>
<section class="group-1">
<div>
<button class="submit" id="sub">Save</button>
</div>
<a href="#" class="already" onclick="flipPages()">Already have an account?Login</a>
</section>
</section>
</menu>
</div>
</div >
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<script src="./login_reg/login.js"></script>
</body>
</html>