-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguest-signup.html
29 lines (26 loc) · 1.08 KB
/
guest-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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="logo_and_images/favicon.png">
<title>Sign Up</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body id="bodymiddle">
<div class="info-box" style=height:80vh>
<img src="logo_and_images\logo.png" alt="logo" , width="30%" ,>
<h1>Sign Up to Vacay!</h1>
<form>
<input type="text" id="Email" name="Email" placeholder="Email"><br>
<input type="text" id="phone" name="phone" placeholder="Username"><br>
<input type="password" id="password" name="password" placeholder="Password"><br>
<input type="password" id="confirm" name="confirm" placeholder="Password Confimation"><br>
<!---input type="submit" value="Submit">--->
</form>
<a href="guest-mp.html">
<button>Sign Up</button>
</a>
</div>
</body>
</html>