-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
91 lines (63 loc) · 2.71 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
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
<?php session_start() ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Login</title>
<link href="css/projlogin.css" type="text/css" rel="stylesheet">
<link href="css/projnavcommom.css" type="text/css" rel="stylesheet">
</head>
<body>
<?php
// include 'projnavcomhtml.php';
?>
<header>
<div id="nav">
<nav>
<ul>
<li><a>Pentest</a></li>
<li class="oonn" style="float:right" ><a href="index.php">SignIn</a></li>
<li class=" " style="float:right" ><a href="projregisterhtml.php">SignUp</a></li>
<!-- <li class="" style="float:right"><a href="forgethtml.php">RecoverAcc</a></li> -->
</ul>
</nav>
</div>
</header>
<div>
<div id="BODY">
<h1>Already A Member!</h1>
<h1 style="color:#f26b31">Sign In</h1>
<form method="POST" action="projlogin.php">
<!-- <fieldset>-->
<div id="form">
<div class="right">
<input type="text" id="uname" name="uname" class="form-control"
placeholder="Username" required="required">
<span id="Error1" class="Error"></span>
<!-- <span id="valid1" class="valid"></span>-->
</div>
<div class="right">
<input type="password" id="password" name="password" class="form-control" placeholder="Password" required="required">
<span id="Error2" class="Error"></span>
<!-- <span id="valid2" class="valid"></span>-->
</div>
</div>
<div>
<input type="submit" id="submit" name="submit" class="form-control"
value="Sign In">
<p style="color:#f26b31"><a href="forgethtml.php">Forgot Password?</a></p>
</div>
<hr><br>
<span>Not a pentest member? <a href="projregisterhtml.php">SignUp</a>.</span><br><br>
<span>Forgot your username?<a href="forgethtml.php"> Click here</a>.</span>
<!-- </fieldset>-->
</form>
</div>
<div>
<footer>
<spam>@copyright_Pentestbob</spam>
</footer>
</div>
</div>
<script src="js/projlogin.js"></script>
</body>
</html>