-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail_input_page_updated.html
60 lines (60 loc) · 2.49 KB
/
email_input_page_updated.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Inter&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet" />
<link href="style_concat.css" rel="stylesheet" />
<title>Sign Up</title>
</head>
<body>
<div class="container">
<div class="header">
<h1 class="logo">planeatary - logo</h1>
<nav>
<ul>
<li>Home</li>
<li><a href="qualtrics.html"><b>Quiz</b></a></li>
<li><a href="manifesto.html">Challenge</a></li>
<li>About us</li>
</ul>
</nav>
<div class="button">
<button class="signIn">Sign In</button>
<span> </span>
<button class="signUp">Sign Up</button>
</div>
</div>
<div class="content">
<div class="arrow_space">
<a href="...html">
<div class="arrow"></div>
</a>
</div>
<div class="info_space">
<h4>Your email address to receive the report </h4>
<input type="email" id="email" name="email" size="40" placeholder="Enter email" style="height:30px;">
<div class="verfication hidden">
<!--<span class="v2342_2713">Invalid Email Format</span>-->
</div>
<p>Which best describe you?</p>
<ul class="radios">
<li>
<input type="radio" value="chill member" />Member of the CHILL (Climate Health in Local lies) CoP
</li>
<li>
<input type="radio" value="other" />Other
</li>
</ul>
</div>
</div>
<div class="btn_next">
<a href="../question_page2/">
<button class="next">Next →</button>
</a>
</div>
</div>
</body>
</html>