-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccountEdit.php
More file actions
49 lines (45 loc) · 1.36 KB
/
accountEdit.php
File metadata and controls
49 lines (45 loc) · 1.36 KB
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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html lang="en">
<head>
<?php
include "./includes/header.php"
?>
</head>
<body>
<?php
include "./includes/nav.php"
?>
<p> </p>
<p> </p>
<p> </p>
<!-- extra 3x <p> </p> to insert extra spaces, ensure navbar doesnt block contents-->
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<div class="auth">
<img src="./images/hd/cat1.png" title="background image"/>
<div id="login" class="auth-container active">
<br>
<br>
<p class="auth-header">Login to view/edit profile</p>
<form action="LoginProcess1.php<?php echo $redirector;?>" method="post">
<input aria-label="email" type="email" class="inputs" name="email" required placeholder="Email"/>
<input aria-label="password" type="password" class="inputs" name="password" required placeholder="Password"/><br>
<br><br>
<button class="auth-submit">Login</button><br>
</form>
</div>
</div>
<?php
include "./includes/footer.php";
?>
</body>
</html>