-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
32 lines (31 loc) · 1.18 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Hotel</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/signup.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<link rel="icon" href="/images/5-stars.ico">
</head>
<body>
<div class="vid-container">
<video class="bgvid" autoplay="autoplay" muted="muted" preload="auto" loop>
<source src="images/videohotel1.mp4" type="video/webm">
</video>
<div class="inner-container">
<div class="box">
<h1>Sign Up</h1>
<label>
<input type="text" placeholder="Username" required/>
<input type="email" placeholder="E-Mail" required>
<input type="number" placeholder="Phone Number" required>
<input type="number" placeholder="EGN" required/>
<input type="text" placeholder="Password" required>
</label>
<a href="index.html" style="text-decoration: none; color: grey"><button>Sign Up</button></a>
</div>
</div>
</div>
</body>
</html>