-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Art Gallery</title>
<!-- Bootstrap CDN -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous"> -->
<!-- Local Bootstrap file -->
<link rel="stylesheet" type="text/css" href="style/bootstrap4/css/bootstrap.css">
<!-- Custom Style for this page -->
<link rel="stylesheet" type="text/css" href="style/loginstyle.css">
</head>
<body>
<form method="post" action="login.php">
<div class="login_box text-center loginbox">
<h3 class="credentials">Enter Credentials</h3><br>
<table>
<tr>
<!-- <td>ID</td> -->
<td><input class="form-control form-control-lg" type="text" name="username" placeholder="ID"></td>
</tr>
<tr>
<!-- <td>Password</td> -->
<td><input class="form-control form-control-lg" type="password" name="password" placeholder="Password"></td>
</tr>
</table><br>
<button class="btn btn-secondary">Enter</button>
<hr>
<button type="submit" formaction="signup.html" class="btn btn-secondary" id="signup">Sign Up</button>
</div>
</form>
<script type="text/javascript" src="style/bootstrap4/js/bootstrap.js"></script>
</body>
</html>