-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
23 lines (20 loc) · 786 Bytes
/
index.php
File metadata and controls
23 lines (20 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<link rel="stylesheet" href="finalProjectStyle.css">
</head>
<body>
<div id="formdiv">
<form id="loginform" action="signedInPage.php" method = "POST">
<h1>Login Below</h1>
<input type="button" value="Login with Facebook" id="fb">
<input type="button" value="Login with Google" id="google">
<p>Username/E-Mail: </p><input type="text" name="username_email">
<p>Password: </p><input type="password" name="password">
<input type="submit">
<a href="registrationPage.php" id="registerlink">Don't have an account? Register here!</a>
</form>
</div>
</body>
</html>