-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
61 lines (61 loc) · 2.8 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap" rel="stylesheet">
<title>AdventureGit - About</title>
</head>
<body>
<button id="back-to-top" >↑</button>
<header class="search-header">
<section class="up">
<img src="images/logo.png" class="logo">
<nav>
<button id="menu-open">
<div class="menu-style"></div>
<div class="menu-style"></div>
<div class="menu-style"></div>
</button>
<div id ="free_menu"></div>
<ul id="menu">
<li class="menu-button"><button id="menu-close"><div class="menu-style"></div><div class="menu-style"></div><div class="menu-style"></div></button>
</button></li>
<li><a href="index.html">Home</a></li>
<li><a href="search.html">Destinations</a></li>
<li><a href="about.html">About</a></li>
<li><a href="partner.html">Partner</a></li>
<li><button id="openLogin">Login</button>
<li><button id="openRegister">Register</button></li>
</ul>
</nav>
</section>
<div id="auth-form-container"></div>
<div id="login-form">
<button id="close-auth-log"></button>
<form>
<input type="text" name="login" placeholder="Your login" required>
<input type="password" name="password" placeholder="Your password" required>
<button name="log in">Log in</button>
<a id="change-to-reg" name="register">Don't have an account? Create one!</a>
</form>
</div>
<div id="register-form">
<button id="close-auth-reg"></button>
<form>
<input type="text" name="login" placeholder="Your login" required>
<input type="email" name="email" placeholder="Your email" required>
<input type="password" name="password" placeholder="Your password" required>
<input type="password" name="password" placeholder="Confirm password" required>
<button name="register">Register</button>
<a id="change-to-log" name="register">Already have an account? Sign in!</a>
</form>
</div>
</header>
<script src="script.js"></script>
</body>
</html>