-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbeta_projects.html
More file actions
42 lines (36 loc) · 2.33 KB
/
beta_projects.html
File metadata and controls
42 lines (36 loc) · 2.33 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
<html>
<head>
<title>Beta Projects</title>
<link rel="stylesheet" href='/css/main.css'>
<link rel="stylesheet" href="/css/beta_projects.css">
<link href="/css/bootstrap/bootstrap_main.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="/javascript/server/beta_project.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1889527741439078"
crossorigin="anonymous"></script>
<!--Bootstrap v5 icon link-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css">
<!--Browse Bootstrap v5 icon here: https://icons.getbootstrap.com-->
</head>
<body>
<div class="page-content">
<br><br><br>
<h3 style="font-family: 'calibri';">Beta Projects</h3>
<p style="font-family: 'calibri';">Beta projects are in testing. Only users invited can enter their email and visit the projects.</p>
<br><br><br>
<form class="form">
<div class="mb-3">
<label for="emailInput" class="form-label">Email address</label>
<input type="email" class="form-control" id="emailInput" aria-describedby="email" onkeyup="updateEmail(this.value);">
<br>
<label for="codeInput" class="form-label">4-digit Code</label>
<input type="number" class="form-control" id="codeInput" aria-describedby="code" maxlength="4" pattern="\d*" onkeyup="updateCode(this.value);">
<br>
<button style="width: 30%;" class="btn btn-primary" onclick="tryConnect();">Submit</button>
</div>
</form>
</div>
</body>
</html>