-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (59 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
<link rel="shortcut icon" type="image/png" href="assets/favicon.png">
<title>Signin-UI — Simple template for signin</title>
</head>
<body>
<main class="main">
<div class="container">
<div class="container__primary">
<section class="u-center-box">
<h1 class="heading-primary u-center-text">Welcome to the Sign-in UI!</h1>
<p class="paragraph u-center-text">A simple and beautiful one page Sign-in Design.</p>
</section>
</div>
<div class="container__secondary">
<div class="logo-box u-center-box">
<img src="assets/logo.svg" alt="Signin-UI Logo" class="logo-box__logo">
</div>
<div class="text-box u-center-text">
<h2 class="heading-secondary">Sign-in UI</h2>
<p class="paragraph">Let's get started now! Or <a href="#" class="link">create your
account</a> if not registered yet</p>
</div>
<form id="form-signup" class="form-box">
<div class="form-box__group">
<input type="email" class="form-box__input" placeholder="E-mail address" id="email" required>
<label for="email" class="form-box__label">E-mail address</label>
</div>
<div class="form-box__group">
<input type="password" class="form-box__input" placeholder="Password" id="password" required>
<label for="password" class="form-box__label">Password</label>
</div>
<div class="form-box__group">
<button class="btn btn--primary">Signin</button>
</div>
<div class="form-box__group form-box__text u-center-text">
<p class="paragraph">Forgot password? <a href="#" class="link">Reset now</a></p>
</div>
</form>
</div>
</div>
<footer class="footer">
<p class="paragraph u-margin-width u-center-text">
Copyright © by <a href="https://github.com/EduardoGiacomini" target="_blank" class="link">Eduardo
Giacomini</a>
</p>
<a href="https://github.com/EduardoGiacomini/signin-ui" target="_blank" class="footer__link u-margin-width">
<img src="assets/github-mark-light-32px.png" alt="GitHub Profile">
</a>
</footer>
</main>
<script src="js/index.js"></script>
</body>
</html>