-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.3 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="main.css">
</head>
<body class="bodyCl">
<form action="">
<h1>
Create your free account
</h1>
<h2>
Come and join our cool and amazing community, fill in your details to get started. Already have an account?
<a href="file:///C:/github/git_form_registration/form_registration/index.html?">Log in !</a>
</h2>
<div>
<input type="text" name="" placeholder="First name" id="" class="smallInput">
<input type="text" name="" placeholder="Last name" id="" class="smallInput">
<input type="text" name="" placeholder="Email address" id="" class="bigInput">
<input type="text" name="" placeholder="Password" id="" class="bigInput">
<button class="button">Sing up for free</button>
</div>
<h3>
By clicking on “Sign up for free”, you agree to the
<a href="">Terms of Service</a>
and the
<a href="">Privacy Policy</a>
</h3>
</form>
</body>
</html>