-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
45 lines (40 loc) · 1.6 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
<html>
<head>
<title>Login Page</title>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>Login Form</h2>
<form action="validation.php" method="post">
<div class="form-group">
<label>Username</label>
<input type="text" name="user" class="form-control">
</div>
<div class="form-group">
<label>Password</label>
<input type="Password" name="password" class="form-control">
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
</div>
<div class="col-lg-6">
<h2>Sign In Form</h2>
<form action="registration.php" method="post">
<div class="form-group">
<label>Username</label>
<input type="text" name="user" class="form-control">
</div>
<div class="form-group">
<label>Password</label>
<input type="Password" name="password" class="form-control">
</div>
<button type="submit" class="btn btn-primary">Sign in </button>
</form>
</div>
</div>
</div>
</body>
</html>