-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.79 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
<!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/css2?family=Sen:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/favicon.ico">
<title>Piggyvest Register Clone</title>
</head>
<body>
<header class="text-center">
<img src="img/piggyvest-icon.svg" alt="piggyvest logo">
</header>
<main>
<form>
<div class="form-info text-center">
<h2>Create a Secure Account</h2>
<p>Welcome to the future of Savings & Investments</p>
</div>
<div class="form-control">
<label for="fullname">Full Name</label>
<input type="text" name="fullname" id="fullname" placeholder="Full Name">
</div>
<div class="form-control">
<label for="email">Email Address</label>
<input type="email" name="email" id="email" placeholder="Email Address">
</div>
<div class="form-control">
<label for="phoneno">Phone Number</label>
<input type="text" name="phoneno" id="phoneno" placeholder="Phone Number">
</div>
<div class="form-control">
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="Password">
</div>
<div class="form-control">
<label for="referrer">Referrer Phone or Promo Code (Optional)</label>
<input type="text" name="referrer" id="refferer" placeholder="Referrer Phone Or Code">
</div>
<div class="form-control">
<label for="hearaboutus">How Did You Hear About Us? (Optional)</label>
<select name="hearaboutus" id="hearaboutus">
<option value="clicktoselect">Click To Select</option>
<option value="facebook">Facebook</option>
<option value="twitter">Twitter</option>
<option value="instagram">Instagram</option>
<option value="friend">Friend/Family/Coworker Referral</option>
<option value="googlesearch">Google search</option>
<option value="googleplaystore">Google playstore</option>
<option value="blog">Online Blog</option>
<option value="newspaper">Local Newspaper</option>
<option value="event">At an event</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-control">
<input type="submit" value="CREATE ACCOUNT">
</div>
</form>
</main>
<footer class="text-center">
<p><a href="#">Already have an account? Login</a></p>
</footer>
</body>
</html>