forked from aamity2k/php-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (35 loc) · 722 Bytes
/
Copy pathindex.php
File metadata and controls
45 lines (35 loc) · 722 Bytes
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>
<title>login page</title>
<head></head>
<body>
<?php
/**
* Created by PhpStorm.
* User: amit
* Date: 29/03/18
* Time: 10:41 AM
*/
echo "<h1>Welcome to Login Page</h1>"
?>
<br>
<br>
<div class="login-form">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<br>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<br>
<a href="dashboard.php"><button type="submit">Login</button></a>
</div>
<style>
body {
text-align: center;
background-color: cadetblue;
}
h1 {
margin-top: 25%;
}
</style>
</body>
</html>