-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrawsignup.html
120 lines (109 loc) · 3.6 KB
/
strawsignup.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!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>sign up</title>
<!-- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> -->
<link rel="stylesheet" href="./styles/strawsignup.css" />
<link rel="stylesheet" href="./styles/header.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link
rel="shortcut icon"
type="image/jpg"
href="https://media.glassdoor.com/sqll/2397264/strawberrynet-squarelogo-1561462036150.png"
/>
<script src="./js elements/signup.js" async></script>
<style>
#headerend > div > button:nth-child(1) {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="header"></div>
<div id="navbaroptions" class="bg"></div>
<div id="center">
<h2>New Here?</h2>
<div>
<form id="myForm-signup" onsubmit="signup(event)" action="">
<div>
<input id="name" type="text" placeholder="First Name" required />
<p id="required"></p>
</div>
<div>
<input type="text" placeholder="Last Name" />
</div>
<div>
<input
id="email"
type="email"
placeholder="Email Address"
required
/>
<p id="required1"></p>
</div>
<div>
<input
id="password"
type="password"
placeholder="Password"
required
/>
<p id="required2"></p>
</div>
</form>
</div>
<p>Please enter a minimum of 8 characters,</p>
<p>including at least 1 letter and 1 number.</p>
<div class="passinput">
<input type="password" placeholder="Re-enter your password" />
</div>
<div class="robot">
<div>
<input class="check" type="checkbox" />
<label>I'm Not a Robot</label>
</div>
<div>
<img src="https://www.gstatic.com/recaptcha/api2/logo_48.png" />
<p class="captcha">reCAPTCHA</p>
</div>
</div>
<p>By creating your account, you agree to our</p>
<p>Privacy Policy & Terms & Conditions</p>
<div class="robot1">
<input class="check" type="checkbox" />
<label>Subscribe to our exclusive email offer</label>
</div>
<button onclick="signup()" class="register">Register</button>
</div>
<!-- FOOTER JS END -->
<div id="footerEndPush"></div>
<!-- FOOTER JS END -->
<!-- ALL JS DATA -->
<!-- ALL JS DATA -->
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<!-- ALL JS DATA -->
</body>
</html>
<script type="module">
import { headerupper, navbarbelow } from "./js elements/header.js";
let head = document.getElementById("header");
head.innerHTML = headerupper();
let navbaroptions = document.getElementById("navbaroptions");
navbaroptions.innerHTML = navbarbelow();
// END FOOTER JS PART
var footerEndPush = document.getElementById("footerEndPush");
import footer from "./js elements/footer.js";
footerEndPush.innerHTML = footer();
// END FOOTER JS PART
</script>