-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
70 lines (66 loc) · 2.11 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
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
<!DOCTYPE html>
<html>
<head>
<title>ONLINE MOVIE BOOKING</title>
<link rel="stylesheet" type="text/css" href="mainindex.css">
<link rel="stylesheet" type="text/css" href="csssignup.css">
</head>
<body>
<center>
<a href="index.html"><img src="LOGO1.JPG" class="logo"> </a>
<div class="topnav">
<a href="index.html">Home</a>
<a href="movies.html">Movies</a>
<a href="bookamovie.html">Book A movie</a>
<a href="aboutus.html">About Us</a>
<div class="sign">
<a href="signin.html">Sign In</a>
<a class="active" href="signup.html">Sign Up</a>
</div>
</div>
</center>
<div class="word-container">
<h1>Get started with your account</h1>
</div>
<div class="register-container">
<form action="/index.html" method="POST">
<div class="name">
<label>
<input type="text" placeholder="First Name" name="fname" required>
</label>
<label>
<input type="text" placeholder="Last Name" name="lname">
</label>
</div>
<label>
<input type="text" placeholder="Username" name="userid" required>
</label>
<label>
<input type="password" placeholder="Password" name="pwd" required>
</label>
<label>
<input type="password" placeholder=" Confirm Password" name="pwd" required>
</label>
<label>
<input type="email" placeholder="Phone number" name="email" required>
</label>
<label>
<input type="email" placeholder="Email Address" name="email" required>
</label>
<label>
<input type="text" placeholder="Address" name="City" required>
</label>
<label>
<input type="text" placeholder="City" name="City" required>
</label>
<label>
<input type="text" placeholder="State" name="City" required>
</label>
<label>
<input type="text" placeholder="Country" name="City" required>
</label>
</form>
<a href="index.html"><button type="submit">Create Account</button></a>
</div>
</body>
</html>