-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
98 lines (83 loc) · 1.67 KB
/
Copy pathindex.php
File metadata and controls
98 lines (83 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
session_start();
if(isset($_SESSION["username"])){
header("Location: home.php");
}
?>
<head>
<style>
.container{
width: 650px;
height: 700px;
margin:auto;
margin-top: 4%;
padding-top: 1px;
}
.login-page {
width: 560px;
height: 900px;
padding: 10% 0 0;
margin: auto;
}
.form {
padding-top: 60px;
position: relative;
z-index: 1;
background: #FFFFFF;
max-width: 549px;
margin: 0 auto 200px;
padding: 45px;
text-align: center;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
font-family: "Roboto", sans-serif;
outline: 0;
background: #f2f2f2;
width: 100%;
border: 0;
margin: 0 0 15px;
padding: 15px;
box-sizing: border-box;
font-size: 14px;
}
.form button {
font-family: "Roboto", sans-serif;
text-transform: uppercase;
outline: 0;
background: #4CAF50;
width: 100%;
border: 0;
padding: 15px;
color: #FFFFFF;
font-size: 14px;
-webkit-transition: all 0.3 ease;
transition: all 0.3 ease;
cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
background: #43A047;
}
.imgs{
margin-top: 2%;
margin-left: 34%;
weight: 20%;
height: 20%;
}
</style>
<title>Login Page</title>
</head>
<body style="background-color: pink">
<center><h1>Life Insurance Management System</h1></center>
<div class="container">
<div class="login-page">
<div class="form">
<form class="login-form" action="login.php" method="POST">
<input type="text" name="username" id="" placeholder="username"/>
<input type="password" name="password" id="" placeholder="password" />
<button>login</button>
</form>
</div>
</div>
</div>
</body>