-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
97 lines (89 loc) · 3.63 KB
/
signup.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
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
<!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>Ayoa Authentication</title>
<link id="favicon" rel = "icon" href = "https://www.ayoa.com/wp-content/uploads/2022/07/AYOA-GUY.png"
/>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div id="main">
<div id="des">
<div>
<img src="https://auth.ayoa.com/images/signup/rating.png">
<p>1000+ reviews across Capterra, App store and Google Play</p>
</div>
<div>
Join over 1.5 million people who love using our software solutions to help them achieve great things.
</div>
<div>
<div>
<img src="https://auth.ayoa.com/images/signup/mindmap.png" alt="">
</div>
<div>
<h5>Capture your best ideas</h5>
<p>When faced with a project or decision, use the power of Mind Mapping in Ayoa to explore all of your creative solutions.</p>
</div>
</div>
<div>
<div>
<img src="https://auth.ayoa.com/images/signup/task.png" alt="">
</div>
<div>
<h5>Turn ideas into action</h5>
<p>Transform your ideas into actionable tasks you can track from planning to execution. Assign teammates, add comments and attach files.</p>
</div>
</div>
<div>
<div>
<img src="https://auth.ayoa.com/images/signup/planner.png" alt="">
</div>
<div>
<h5>Manage your priorities</h5>
<p>Productivity isn't just about getting stuff done, but getting the right stuff done. Manage your workload to perfection with the flexibility of your Ayoa Planner.</p>
</div>
</div>
<div id="logo">
<img src="https://auth.ayoa.com/images/og_logo_white.svg">
</div>
</div>
<!-- Signup part -->
<div id="signup">
<div>
<img src="https://auth.ayoa.com/images/ayoa-icon-logo.png">
</div>
<div>
Create your account below to get started.
</div>
<div>
<input id="name" placeholder="First and last name" type="text">
</div>
<p id="alert1"></p>
<div>
<input id="email" placeholder="Email address" type="email">
</div>
<p id="alert2"></p>
<div>
<input id="password" placeholder="Create password" type="password">
</div>
<p id="alert3"></p>
<div>
<input id="check" type="checkbox">
I agree to the Ayoa Terms & Conditions, License Agreement and Privacy Policy.
</div>
<p id="alert4"></p>
<div>
<input type="checkbox">
Tick to receive offers, vouchers, free bonuses, how-to guides, and marketing communications. We will also immediately send you a welcome 5% discount code off all annual plans. You can change your email preferences at any time.
</div>
<div>
<input id="submit" type="submit" value="SIGN UP - IT’S FREE">
</div>
</div>
</div>
</body>
</html>
<script src="signup.js"></script>