-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 2.29 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
<!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>Ticketmaster | Waiting List Feature</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<main id="main-container">
<section id="waiting-list-form-section">
<div id="hearder">
<div id="waiting-list-header">
<button id="return-button">⟨</button>
<h2>Join Waiting List</h2>
</div>
<img src="./assets/waiting-list.png" alt="list icon" id="form-icon">
</div>
<div id="form-content">
<h3>How should we contact you?</h3>
<form id="waiting-list-form">
<div id="inputs-container">
<div class="container">
<input type="checkbox" name="phone-checkbox" id="phone-checkbox">
<div class="cont-inputs">
<label for="phone">Mobile Number</label>
<p id="note">Please include country code</p>
<input type="tel" name="mobile" id="mobile" pattern="^[+]{1}[1-9]{1}[0-9]{5,14}$">
</div>
</div>
<hr>
<div class="container">
<input type="checkbox" name="email-checkbox" id="email-checkbox" checked>
<div class="cont-inputs" id="email-inputs">
<label for="email">Email</label>
<input type="email" name="email" id="email" value="example@example.com">
</div>
</div>
</div>
<button type="submit" class="button">Confirm</button>
</form>
</div>
</section>
</main>
<script src="./test/test-helpers.js"></script>
<script src="index.js"></script>
<script src="./test/index.test.js"></script>
</body>
</html>