-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.php
31 lines (26 loc) · 953 Bytes
/
user.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
<?php
//Includes php functions to the page
include 'php/outputNavigation.php';
include 'php/outputHead.php';
include 'php/outputFooter.php';
//Generates head and nav code
outputHead("The Crown | User");
outputNavigation("Login");
?>
<!-- Login form -->
<form id="login-form" method="get">
<div class="container-user">
<img src="img/logo-on.png">
<h1>Login</h1>
<p id="head">Welcome back, Chief! </p>
<input type="text" placeholder="Username" name="username" required id="username">
<input type="password" placeholder="Password" name="psw" required id="psw">
<button type="button" value="Submit1" class="registerbtn" onclick="login()">Log In</button>
<p id="terms">By continuing, you agree to Crown's <a href="terms.php">Terms & Services</a></p>
<p id="acc">Not with us yet? <a href="user-register.php">Sign up</a></p>
</div>
</form>
<?php
//Generates footer
outputFooter();
?>