-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (87 loc) · 4.17 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<title>Sign Up | Station70</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<meta name="theme-color" content="#000000">
<meta name="description" content="">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-primary" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="/"><img src="images/station70_logo_navbar.png" alt="logo"
class="img-fluid object-fit-sm-contain" width="11%"></a>
</div>
</nav>
<br>
<div class="container col-4">
<h1>Register</h1>
<form action="" method="post" id="signUpForm">
<div class="form-group">
<label for="name" class="form-label mt-4">Name<span class="text-warning">*</span></label>
<input type="text" name="name" id="name" placeholder="Enter name" class="form-control" required>
</div>
<div class="form-group">
<label for="companyName" class="form-label mt-4">Company Name<span class="text-warning">*</span></label>
<input type="text" name="companyName" id="companyName" placeholder="Enter company name"
class="form-control" required>
</div>
<table>
<tbody>
<tr>
<td>
<div class="form-group">
<label for="workEmail" class="form-label mt-4">Work Email<span class="text-warning">*
</span>
</label>
<input type="email" name="workEmail" id="workEmail" placeholder="Enter your work email"
class="form-control" required>
</div>
</td>
<td> </td>
<td>
<div class="form-group">
<label for="phoneNumber" class="form-label mt-4">Phone Number</label>
<input type="text" name="workPhone" id="workPhone"
placeholder="Enter your work phone number" class="form-control">
</div>
</td>
</tr>
</tbody>
</table>
<br>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="terms" required>
<label class="form-check-label" for="flexCheckDefault">
I hereby accept the <a>Station70 Customer Agreement</a> on behalf of my organization and confirm
that I have the authority to do
so. For more information about Station70's privacy practices, see the <a>Station70 Privacy
Statement</a>.
</label>
</div>
<br>
<div class="form-group">
<div class="g-recaptcha" data-sitekey="6Lemc7UoAAAAAGFUc94XPQksffqZkJoVyCoZncwY"
data-callback="verifyRecaptchaCallback" data-expired-callback="expiredRecaptchaCallback"></div>
<input class="form-control d-none" data-recaptcha="true" required
data-error="Please complete the Captcha">
<div class="help-block with-errors"></div>
</div>
<br>
<button onclick="next()" type="submit" class="btn btn-primary">Next</button>
</form>
<br>
</div>
<script>
function next() {
location.href = "next.html"
}
</script>
<script src="https://www.google.com/recaptcha/api.js"></script>
<script src="https://bootswatch.com/_vendor/bootstrap/dist/js/bootstrap.bundle.js"></script>
</body>
</html>