-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
53 lines (49 loc) · 2.25 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
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title> Retail Enterprise</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</head>
<body>
<div class="header ">
<div class="header-right">
<a class="active" href="#"><h1>Retail Enterprise</h1></a>
</div>
</div>
<div class="container" style="text-align: center;">
<br><br>
<div class="col-md-6 signinbox" style="text-align: center; display: inline-block;">
<form action="check_auth.php" method="post" class="">
<h3 class="grey-text text-darken-3">SignIn</h3>
<div class="input-field">
<label htmlFor="email">Email</label>
<input type="email" id="email" name="owner_email"></input>
</div>
<div class="input-field">
<label htmlFor="password">Password</label>
<input type="password" id="password" name="owner_password"></input>
</div>
<div class="input-field">
<button type="submit" class="btn btn-success">Login</button>
</div>
<div>
<label class="col-form-label">not registered ? <a href="signup.php">Create an account</a></label>
</div>
</form>
</div>
</div>
</body>