-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
88 lines (79 loc) · 2.93 KB
/
Copy pathindex.php
File metadata and controls
88 lines (79 loc) · 2.93 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
<?php
session_start();
$_SESSION["myValue"] = 0;
$_SESSION["myValue1"] = 0;
?>
<html>
<head>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css">
<script type="text/javascript" src="bootstrap/js/jquery-3.1.1.min.js">
</script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
<link rel="stylesheet" href="index.css" type="text/css">
<title>Login here</title>
<style>
footer{
padding: 15px 0px;
background-color: #101010;
color:#9d9d9d;
bottom: 0;
position: absolute;
width: 100%;
}
.container{
text-align: center;
}
.for_login{
padding-right: 10px;
}
</style>
</head>
<body>
<nav class = "navbar navbar-inverse navbar-fixed-top">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="row">
</div>
<a href="index.php" class="navbar-brand">SuCodu</a>
<img src="img/inno1.png" alt="text" style="margin-left:500px">
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="signup.php"><span class="glyphicon glyphicon-user"></span>Sign up</a></li>
<li class="for_login"><a href="login.php"><span class="glyphicon glyphicon-log-in"></span>Login</a></li>
</ul>
</div>
</nav>
<h2>LOGIN</h2>
<div class="col-xs-6 col-xs-offset-3" style="margin-top: 50px">
<div class="panel panel-primary" style="height: 400px" >
<div class="panel-heading"> Login Here</div>
<div class="container">
<div class="row">
<div class="panel-body ">
<!--Enter your code here-->
<form action="login.php" method="post" name="frm_login" id="frm_login">
<div class="form-group" style="margin-top:10px">
<label for="username" >Username:</label>
<input type="text" class="form-control" name="user_name" size="13" id="mail_id" placeholder="userame">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" name="pwd" id="pwd" size="13" placeholder="password">
</div>
<div class="form-group">
<input type="submit" name="submit" class="btn btn-primary" value="LOGIN"/>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>