-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
28 lines (27 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<section class="pb-4" >
<h1 style="margin: 0 auto; text-align: center;" >Login</h1>
<section class="w-100 p-4 d-flex justify-content-center align-items-center pb-4" >
<form action="./backend/login.php" method="post" style="width: 22rem;" >
<div class="form-outline mb-4" >
<input type="email" name="email" placeholder="masukkan email anda" class="form-control" >
</div>
<div class="form-outline mb-4" >
<input type="password" name="password" placeholder="masukkan password anda" class="form-control" >
</div>
<div class="form-outline mb-4" >
<input type="submit" value="login" name="submit" class="btn btn-primary" >
</div>
</form>
</section>
</section>
</body>
</html>