-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstaffMain.php
More file actions
60 lines (52 loc) · 2.18 KB
/
staffMain.php
File metadata and controls
60 lines (52 loc) · 2.18 KB
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
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>BHotel</title>
<title>Martine</title>
<link rel="icon" href="img/favicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- flaticon CSS -->
<link rel="stylesheet" href="css/flaticon.css">
<!-- fontawesome CSS -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="fontawesome/css/all.min.css">
<!-- magnific CSS -->
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/gijgo.min.css">
<!-- style CSS -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/login.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" type="text/javascript"></script>
</head>
<style>
body {
background-color : #f5f6f7;
}
</style>
<body>
<section class="login section_padding">
<div class="container">
<form action="login.php" method="POST">
<div class ="row justify-content-center" style="margin-left:100px">
<a href = "staffMain.php"><h1>B Hotel</h1></a> <h2>for Staff</h2>
</div>
<div class ="row justify-content-center">
<input type="text" id="id" name="ID" class ="input_row" placeholder = "ID">
</div>
<div class ="row justify-content-center">
<input type="PASSWORD" id="pw" name="PW" class = "input_row" placeholder="password">
</div>
<div class ="row justify-content-center">
<button class ="btn_1" id="login"> Sign in </button>
</div>
</form>
<div class ="row justify-content-center">
<p>For new registers, click <a href="signUp.php">here.</a></p>
</section>
<!-- jquery plugins here-->
<script src="js/jquery-1.12.1.min.js"></script>
<script src="js/custom.js"></script>
<script src="js/sign.js"></script>
</body>
</html>