-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (38 loc) · 1.49 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Momi_Diary || Your personal online diary.</title>
</head>
<body>
<div class="logo">
<img src="momi.png" alt="">
</div>
<div class="wrapper">
<section class="form login">
<header>Your Personal Online Diary</header>
<form action="#" method="POST" enctype="multipart/form-data" autocomplete="on" id="signinForm">
<div class="error-text"></div>
<div class="success-text"></div>
<div class="field input">
<label>Email Address</label>
<input type="text" name="email" placeholder="Enter your email">
</div>
<div class="field input">
<label>Password</label>
<input type="password" name="password" placeholder="Enter your password">
<i class="fas fa-eye"></i>
</div>
<div class="field button">
<input type="submit" name="submit" value="Open diary" id="signinBtn">
</div>
</form>
<div class="link">Not yet signed up? <a href="signup.php">Signup now</a></div>
</section>
</div>
<script src="logic/signin.js"></script>
</body>
</html>