-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·53 lines (42 loc) · 1.47 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Boba Coffee</title>
<meta charset="UTF-8">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="assets/css/login_util.css">
<link rel="stylesheet" type="text/css" href="assets/css/login2.css">
<!--===============================================================================================-->
</head>
<body>
<div class="container-login" style="background-image: url('assets/images/bg1.jpg');">
<div class="wrap-login p-l-55 p-r-55 p-t-80 p-b-30">
<span class="login-form-title p-b-37">
BobaCoffee
</span>
<form class="login-form validate-form" action="checklogin.php" method="post">
<span class="login-form-title p-b-37">
Sign In
</span>
<div class="wrap-input m-b-25">
<input class="input" type="text" name="username" placeholder="username">
<span class="focus-input"></span>
</div>
<div class="wrap-input m-b-25">
<input class="input" type="password" name="password" placeholder="password">
<span class="focus-input"></span>
</div>
<div class="container-login-form-btn">
<input class="login-form-btn" type="submit" value="Sign In"/>
</div>
<br><br>
<div class="text-center">
<a href="signup.php" class="txt2 hov1">
Sign Up
</a>
</div>
</form>
</div>
</div>
</body>
</html>