-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate.html
48 lines (40 loc) · 1.57 KB
/
create.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
<!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>Document</title>
<link rel="stylesheet" href="./style/create.css">
<link rel="stylesheet" href="./style/nav.css">
<link rel="stylesheet" href="./style/foot.css">
</head>
<body>
<nav>
</nav>
<div id="jarvis">
<div id="accContainer">
<div id="signupBox">
<div id="form">
<h1>Create password</h1>
<h6>Use a minimum of 10 characters, including uppercase letters, lowercase letters and numbers.<h6>
<input type="text" id="email" placeholder="Your email">
<input type="text" id="password" placeholder="Your password">
<button id="log_in" onclick="login()">Login</button>
</div>
<p>By signing in or creating an account , you agree with our <a href="">Terms & Conditions</a> and <a
href="">Privacy statement</a>.</p>
<p>All rights reserved.<br>Copyright (2006-2022)- Booking.com®</p>
</div>
</div>
</div>
<footer></footer>
</body>
</html>
<script type="module">
import nav from "./component/nav.js"
import footer from "./component/footer.js"
document.querySelector("nav").innerHTML = nav()
document.querySelector('footer').innerHTML = footer();
</script>
<script src="./script/create.js"></script>