-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_in.html
62 lines (61 loc) · 3.03 KB
/
sign_in.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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.2/jquery.modal.min.css">
<link rel="stylesheet" href="css/main.css">
<title>Document</title>
</head>
<body>
<div class="notice-list" style="display: none">
<div class="notice-list__item notice-list__item_green">
<p>If this email address was used to create an account, instructions to reset your password will be sent to you. Please check your email.</p>
</div>
<div class="notice-list__item notice-list__item_red notice-list__item_new">
<p>If this email address was used to create an account, instructions to reset your password will be sent to you. Please check your email.</p>
</div>
</div>
<div id="Modal" class="modal sign-modal">
<div class="sign-wrapper">
<a href="#" class="sign-back">
<i class="mdi mdi-arrow-left"></i> Back to Ineichen
</a>
<div class="sign-form">
<h1 class="title">Sign In</h1>
<div class="sign-form__fields">
<div class="c-field">
<input type="text" class="c-field__input" autocomplete="on">
<label class="c-field__label">Enter your email</label>
<small class="c-field__note c-field__note_red">Error Error Error Error </small>
</div>
<div class="c-field">
<input type="password" class="c-field__input">
<label class="c-field__label">Enter your password</label>
</div>
</div>
<div class="sign-form__btns">
<a href="" class="sign-form__btn c-button c-button_blue c-button_filled c-button_full c-button_loading">Sign in now</a>
<span>or</span>
<a href="" class="sign-form__btn c-button c-button_grey c-button_outline c-button_full c-button_icon-left">
<i class="mdi mdi-google blue-text"></i>
Continue with Google
</a>
<a href="" class="sign-form__btn c-button c-button_grey c-button_outline c-button_full c-button_icon-left">
Recover password
</a>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.2/jquery.modal.min.js"></script>
<script src="js/smooth-scroll.js"></script>
<script src="js/main.js"></script>
<script>
$('#Modal').modal();
</script>
</body>
</html>