forked from droidchief/IMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·62 lines (49 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CodePen - Neumorphism Login Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
<meta charset="utf-8">
</head>
<body>
<div class="main">
<div class="container a-container" id="a-container">
<img src="logo.png" style="border-radius: 10px !important;" />
</div>
<div class="container b-container" id="b-container">
<form class="form" id="b-form" method="POST" action="Frontend/dashboard.html">
<h2 class="form_title title">Please Sign in to Continue</h2>
<input class="form__input" type="text" placeholder="Username">
<input class="form__input" type="password" placeholder="Password">
<input type="submit" class="form__button switch__button button" value="SIGN IN" />
</form>
</div>
<div class="switch" id="switch-cnt">
<div class="switch__circle"></div>
<div class="switch__circle switch__circle--t"></div>
<div class="switch__container" id="switch-c1">
<h2 class="switch__title title">Welcome Back !</h2>
<p class="switch__description description">To keep connected with A.A UBA please sign in with your login details</p>
<button class="switch__button button switch-btn">PROCEED</button>
</div>
<div class="switch__container is-hidden" id="switch-c2">
<h2 class="switch__title title">A.A UBA SHOPS</h2>
<p class="switch__description description">Enter your login details and start shopping with A.A UBA Shops</p>
<button class="switch__button button switch-btn">BACK</button>
</div>
</div>
</div>
</body>
</html>
<!-- partial -->
<script src="script.js"></script>
</body>
</html>