-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
24 lines (19 loc) · 814 Bytes
/
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
<?php
include "includes/_process_include.php";
include "includes/_header.php";
?>
<form class="form-signin">
<h2 class="form-signin-heading">Please sign in</h2>
<label for="inputEmail" class="sr-only">Username</label>
<input type="input" id="username" class="form-control" placeholder="Username" required autofocus>
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" id="password" class="form-control" placeholder="Password" required>
<div class="checkbox">
</div>
<input type="hidden" id="nextURL" class="form-control" value=<?=Gallery_Page_Link ?>>
<button class="btn btn-lg btn-primary btn-block" id="loginbtn" type="button">Sign in</button>
<div id="loader text-center"></div>
</form>
<?php
include "includes/_footer.php";
?>