-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction_page_2.html
More file actions
81 lines (60 loc) · 2.43 KB
/
function_page_2.html
File metadata and controls
81 lines (60 loc) · 2.43 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
<!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>function_page_2</title>
<script src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./styles/function_page_2.css">
</head>
<body>
<div id="container">
<div id="left_div">
<div>
<img id="logo" src="https://i.ibb.co/RQhW0Jy/20221108-224623.png" alt="">
<p id="logotitle"> WRIKE RIDER </p>
</div>
<h1>Welcome!<br>
Let’s create your<br> account</h1>
</div>
<div id="right_div">
<img src="https://cdn.wrike.com/static/reg_flow/forms/general_info/reg_form_image--m.png" alt="">
<label>Country of residence</label>
<div id="mid_input">
<p class="employees" id="1">2-20 employees</p>
<p class="employees" id="2">21-50 employees</p>
</div>
<div id="mid_input">
<p class="employees" id="3">51-100 employees</p>
<p class="employees" id="4">101-200 employees</p>
</div>
<div id="mid_input">
<p class="employees" id="5">201-500 employees</p>
<p class="employees" id="6">501-1000 employees</p>
</div>
<div id="mid_input">
<p class="employees" id="7">1001+ employees</p>
<p class="employees" id="8">its just me</p>
</div>
<div id="circle">
<div>
<div><i class="fa-regular fa-circle"></i></div>
<div><i class="fa-solid fa-circle"></i></div>
<div><i class="fa-regular fa-circle"></i></div>
<div><i class="fa-regular fa-circle"></i></div>
<div><i class="fa-regular fa-circle"></i></div>
<div><i class="fa-regular fa-circle"></i></div>
<div><i class="fa-regular fa-circle"></i></div>
<div><i class="fa-regular fa-circle"></i></div>
<div><i class="fa-regular fa-circle"></i></div>
</div>
<p id="next_btn">Next</p>
</div>
</div>
</div>
</body>
</html>
<script src="./scripts/function_page_2.js"></script>