-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (86 loc) · 3.54 KB
/
index.html
File metadata and controls
107 lines (86 loc) · 3.54 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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>Beta Club | Parallel Beta Software Program</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="home">
<img src="assets/betaclublogo.svg" class="logo">
<h1>Help Make The Next Releases Of Parallel The Best Yet.</h1>
<p>As a member of the <span>Parallel</span> Beta Software Program, you can take part in shaping Parallel by test-driving pre-release versions and letting us know what you think. The feedback you provide will help us identify and fix issues, and make the softwares even better.</p>
<a href="#register"><button class="join">Join The Club</button></a>
</div>
<div id="party">
<h1>Party-cipate!</h1>
<p>Test the apps, give feedback and attend Exclusive Launch Parties...</p>
<p>Attend the parties and network with people who will help in shaping the future.</p>
</div>
<div id="enroll">
<h1>How to enroll?</h1>
<p>Fill out the form and get yourself registered for the beta program. As a member of the Parallel Beta Software Program, you’ll be able to enroll your devices to access the public betas and try out the latest features.
</p>
<p>
You can provide feedback directly to Parallel by filling out a form that will be shared after the duration of program.
</p>
</div>
<div id="before">
<h1>Before you enroll</h1>
<p>Enrolled devices will receive continuous beta updates for the duration of the platform’s release cycle ahead of the public release schedule. The updates that you’ll receive as a part of the beta program are pre-release versions, and may contain errors and defects.
</p>
</div>
<div class="container" id="register">
<form data-netlify="true" method="post">
<div class="row">
<div class="col-25">
<label for="name">Full Name</label>
</div>
<div class="col-75">
<input type="text" id="name" name="name" required placeholder="Your name">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="email">Email</label>
</div>
<div class="col-75">
<input type="email" id="email" name="email" required placeholder="Your Email">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="dob">DOB</label>
</div>
<div class="col-75">
<input type="date" id="dob" name="dob" required>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="phone">Phone No.</label>
</div>
<div class="col-75">
<input type="tel" id="phone" name="phone" pattern="[0-9]{10}" required placeholder="XXXXXXXXXX">
</div>
</div>
<div class="row">
</div>
<br>
<button id="signup">Sign Up!</button>
</form>
</div>
<br>
<br>
<br>
<br>
<br>
<footer>
<p align="center" class="footer__copy">© Beta Club 2022</p>
<br>
<br>
</footer>
</body>
</html>