-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
46 lines (42 loc) · 1.48 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<link rel="stylesheet" href="signup.css" />
<body>
<h1>Create My Marketing Calendar</h1>
<p>Free for life. No credit card required.</p>
<form action="">
<label for="">Full Name</label> <br />
<input type="text" id="fullname" placeholder="Full Name" />
<br /><br />
<label for="">Email Address</label><br />
<input type="text" id="email" placeholder="Work Email Address" />
<br /><br />
<label for="">Password</label><br />
<input
type="text"
id="password"
placeholder="Password(minimum 8 characters"
/><br /><br />
<input type="submit" id="submit" value="Get Started Now" />
<br />
<br />
<p>OR</p>
<button>Continue with Google</button><br /><br />
<button>Continue with FaceBook</button><br /><br />
<button>Continue with Apple</button><br /><br />
<p id="last">
By clicking "Get Started Now", you agree to CoSchedule’s
<a href="">terms of service, end user agreement, and privacy policy</a>
; you are 16 years or older; and you will receive information from
CoSchedule from which you can opt out at any time.
</p>
</form>
</body>
</html>
<script src="signup.js"></script>