-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.16 KB
/
index.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
<!DOCTYPE html>
<!--
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/html.html to edit this template
-->
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"/>
<meta charset="utf-8"/>
<title>Login</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body border="1">
<center>
<div class='login'>
<h2 class="title">Login</h2>
<form action="" method="post" name="login" >
<table
<tr><td>User Name</td>
<td><input type="text" name="username" placeholder="Username" autofocus="true" required/></td>
</tr>
<tr> <td> Password</td>
<td><input type="password" id ="password" name="password" placeholder="Password" required/></td>
</tr>
</table>
<br>
<button onclick="validation()">Login</button>
<br>
<p class="link"><a href="registration.php">New Registration</a></p>
</form>
</div>
</center>
</body>
</html>