-
Notifications
You must be signed in to change notification settings - Fork 0
/
in_log.php
97 lines (90 loc) · 2.61 KB
/
in_log.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
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
<!DOCTYPE html>
<html>
<head>
<title>Company Login</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style type="text/css">
body{
overflow-x:hidden;
height:100%;
}
.main-content{
width: 50%;
height: 40%;
margin: 10px auto;
background-color: #fff;
border: 2px solid #e6e6e6;
padding: 40px 50px;
}
.header{
border: 0px solid #000;
margin-bottom: 5px;
}
.well{
background-color: #393939;
height:110px;
}
#signin{
width: 60%;
border-radius: 30px;
background-color:#393939;
}
.overlap-text{
position: relative;
}
.overlap-text a{
position: absolute;
top: 8px;
right: 10px;
font-size: 14px;
text-decoration: none;
font-family: 'Overpass Mono',monospace;
letter-spacing: -1px;
}
.bdy{
background-image:url(images/i1.png);
height : 100%;
background-position:center;
background-repeat:no-repeat;
background-size: cover;
}
</style>
<body class="bdy">
<div class="row">
<div class="col-sm-12">
<div class="well">
<center><h1 style="color: white;">Destine</h1></center>
<div class="col-sm-6" style="top:-65px;">
<a href=main.php><img src="images/logo1.jpg" class="img-rounded" title="Destine" width="65px" height="65px">
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="main-content">
<div class="header">
<h3 style="text-align: center;"><strong>Login to Induvidual service Provider Account</strong></h3>
</div>
<div class="1-part">
<form action="" method="post">
<input type="email" name="email" placeholder="Email" required="required" class="form-control input-md"><br>
<div class="overlap-text">
<input type="password" name="pass" placeholder="Password" required="required" class="form-control input-md"><br>
<a style="text-decoration: none; float:right; color: #393939;" data-toggle="tooltip" title="Reset Password" href="forgot_password.php">Forgot Password?</a>
</div>
<a style="text-decoration: none;float: right; color: #393939;" data-toggle="tooltip" title="Create Account!" href="induvidual_reg.php">Don't have an account?</a><br><br>
<center><button id="signin" class="btn btn-info btn-lg" name="login">Login</button></center>
<?php include("in_log_q.php"); ?>
</form>
</div>
</div>
</div>
</div>
</body>
</html>