-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (42 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Daily Form</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="" />
<link rel="icon" href="favicon.png"/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="ba-container">
<form class="ba-form" action="#" method="post">
<div class="ba-form__header">
<h1 class="ba-form__title">Create your free account</h1>
<div class="ba-form__description">Come and join our cool and amazing community, fill in your details to get started. Already have an account? <a href="#">Log in.</a></div>
</div>
<div class="ba-form__main">
<div class="ba-row cf">
<input type="text" name="first-name" placeholder="First name" required>
<input type="text" name="last-name" placeholder="Last name" required>
</div>
<div class="ba-row">
<input type="email" name="email-address" placeholder="Email address" required>
</div>
<div class="ba-row">
<input type="password" name="password" placeholder="Password" required>
</div>
</div>
<div class="ba-form__footer">
<button class="ba-button ba-button-sign-up">Sign up for free</button>
<div class="ba-form__description">By clicking on “Sign up for free”, you agree to the
<a href="#">Terms of Service</a> and the
<a href="#">Privacy Policy</a></div>
</div>
</form>
</div>
</body>
</html>