-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword.html
93 lines (70 loc) · 1.56 KB
/
password.html
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
<!doctype html>
<html>
<head>
<title>UNITE.K</title>
<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.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="style.css" rel="stylesheet" text="text/css">
</head>
<body>
<header>
<div class="row">
<div class="logo">
<img src="uklogo4.svg" alt="Breaking Borders Logo" height="95" width="180">
</div>
<ul class="main-nav">
<li><a href="index.html"> Home</a></li>
</ul>
</div>
<div class="hero">
<section class="features">
<h3 class="text-center">Login Page</h3>
</header>
<body style="font-family: Franklin Gothic">
<p style = "font-size: 13px ; padding-left:1em ">
<br />
<h4>Login to your Account:</h4>
</p>
<form action="password.php" method = "post">
<br />
<table border= "0" cellspacing = "0"
style= "height: 90px; weight: 123px;
font-size: 10 pt" cellpadding="0">
<tr>
<td colspan= "3">
 
<strong >Username</strong>
</td>
</tr>
<tr>
<td colspan = "3">
 
<input size = "40" name = "USERNAME"
style="height: 22 px; width: 115 px"/>
</td>
</tr>
<tr>
<td colspan = "3">
 
<strong>Password</strong>
</td>
</tr>
<tr>
<td colspan = "3">
 
<input size = "40" name = "PASSWORD"
style="height: 22 px; width: 115 px" type="password"/>
</td>
</tr>
<tr>
<td colspan = "1">
 
<input type = "submit" name = "Enter" value = "Enter"
style="height: 23 px; width: 47 px"/>
</td>
</tr>
</table>
</form>
</body>
</html>