-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsign_in.html
76 lines (76 loc) · 1.69 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Thunderbolt - Sign in</title>
<link rel="stylesheet" href="./assets/css/form_page.min.css" />
</head>
<body class="flx">
<div class="left flx col al-cnt">
<form action="#" method="POST" id="signInForm">
<fieldset>
<div class="flx col al-cnt">
<legend>SIGN IN</legend>
<input
type="email"
class="form_field"
placeholder="Email"
name="email"
required
/>
<input
type="password"
class="form_field"
placeholder="Password"
name="password"
required
/>
</div>
</fieldset>
<button class="btn1">SIGN IN</button>
</form>
<ul class="sm-icons">
<li class="sm-icon">
<a href="" class="twitter-icon">
<img
src="./assets/images/twitter-logo-black.svg"
alt="Twitter Logo"
/>
</a>
</li>
<li class="sm-icon">
<a href="" class="github-icon">
<img
src="./assets/images/github-logo-black.svg"
alt="Github Logo"
/>
</a>
</li>
</ul>
<p>
Don't have an account? <a
href="./contributor_form.html"
class="link"
>APPLY</a
>
</p>
</div>
<div class="right flx col al-cnt">
<div class="black-bg flx col">
<div class="info flx col al-c-st">
<img src="./assets/images/dsc_logo.svg" />
<h1>
Welcome <br />
Back
</h1>
<div class="border"></div>
<p>
Login to your account on the blog
</p>
</div>
</div>
</div>
<script src="./assets/js/dist/bundle.min.js"></script>
</body>
</html>