-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 2.18 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Online bus booking</title>
<meta charset="UTF-8">
<link rel="stylesheet" href='https://use.fontawesome.com/releases/v5.8.1/css/all.css'>
<link rel="stylesheet" href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700,800&display=swap" rel="stylesheet">
</head>
<body>
<div class="cont">
<div class="form sign-in">
<div class="box">
<form name="myform" method="post" action="login.php">
<h2>Sign In</h2>
<input type="text" id="username" placeholder="Username" name="username" required="required">
<input type="password" id="password" placeholder="password" name="password" required="required">
<input type="submit" name="login" value="login">
</form>
</div>
</div>
<form name="signup" method="post" action="Signup.php" >
<div class="sub-cont">
<div class="img">
<div class="img-text m-up">
<h2>New here?</h2>
<p>Sign up</p>
</div>
<div class="img-text m-in">
<h2>One of us?</h2>
<p>If you already has an account, just sign in.</p>
</div>
<div class="img-btn">
<span class="m-up">Sign Up</span>
<span class="m-in">Sign In</span>
</div>
</div>
<div class="box">
<div class="form sign-up">
<h2>Sign Up</h2>
<input type="text" name='name' placeholder="Enter full name" required="required">
<input type="text" name='username' placeholder="Enter Username" required="required">
<input type="password" name='password' placeholder="Enter password" required="required">
<input type="password"name='confirm_password' placeholder="Enter password again" required="required">
<input type="submit" name="SignUp" value="SignUp">
</div>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>