-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.php
More file actions
34 lines (33 loc) · 979 Bytes
/
Assignment.php
File metadata and controls
34 lines (33 loc) · 979 Bytes
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
<html>
<head>
<title>Library User Create</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<header>
<nav>
<ul id="ul1">
<li class = "li1"><a class = "a1" href="Assignment.php">Login</a></li>
<li class = "li1"><a class = "a1" href="ProjectCreateUser.php">Registration</a></li>
</ul>
</nav>
</header>
<?php
if(isset($_GET['Message'])){
echo $_GET['Message'];
}
?>
<body>
<h2>Login</h2>
<div class="login">
<form id="login" action="login.php" method="post">
<p>Username:
<input type="text" name="username" id="Uname"></p>
<p>Password:
<input type="password" name="password" id="Pass"></p><p>
<button type="submit" value = "Submit" name="submit" id="submit">Login</button>
</form>
<a id="res" href="ProjectCreateUser.php">Not Already a user?</a>
</div>
</body>
<footer><p>Site by: Ryan Deguara © 2021</p></footer>
</html>