-
Notifications
You must be signed in to change notification settings - Fork 3
/
signin.html
112 lines (108 loc) · 4.12 KB
/
signin.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
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign In</title>
<link rel="stylesheet" href="css/styles.css" />
<!-- Google Fonts -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
/>
<!-- CSS Reset -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
/>
<!-- Milligram CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css"
/>
</head>
<body>
<div class="page-wrapper">
<header>
<nav class="nav">
<a href="index.html"
><img
class="navLogo"
src="images/bitcoin-logo.png"
alt="Home"
/></a>
<h1 class="navTitle">CryptoTrak</h1>
<ul class="navListColumns">
<li class="li-decoration">
<a href="liveprices.html">Live Prices</a>
</li>
<li class="li-decoration">
<a href="pricing.html">Pricing</a>
</li>
<li class="li-decoration">
<a href="dashboard.html">Dashboard</a>
</li>
<li class="li-decoration">
<a href="advanced.html">Advanced</a>
</li>
<li class="li-decoration">
<a href="signup.html">Sign-Up</a>
</li>
<li class="li-decoration">
<a href="signin.html">Sign-In</a>
</li>
</ul>
</nav>
</header>
<div class="sign-in-container">
<h1 class="form-heading">Welcome back! <br />Sign in here</h1>
<div class="form-container">
<form>
<label for="emailSignIn">Email Addres:</label><br />
<input
type="email"
name="emailSignIn"
id="emailSignIn"
/><br />
<label for="passwordSignIn"
>Type Password (min 8 characters)</label
><br />
<input
type="password"
name="passwordSignIn"
id="passwordSignIn"
/><br />
<div class="form-buttons">
<button>Sign-In</button>
<button>Clear</button>
</div>
</form>
</div>
</div>
</div>
<footer>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">TOS / Privacy</a></li>
<li><a href="#">Crypto Info</a></li>
<li><a href="#">Trading Info</a></li>
</ul>
<div class="social-media">
<li>
<a href="#"
><img
src="images/linkedin-logo.png"
alt="Social Media Linkedin link"
/></a>
</li>
<li>
<a href="#"
><img src="images/github-logo.png" alt="Github link"
/></a>
</li>
</div>
</footer>
<script src="js/cryptotrak.js"></script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
</body>
</html>