html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<title>Log in</title>
<link rel="stylesheet" type="text/css" href="css.css"/>
</head>
<body>
<form action="" method="post" class="authenticate">
<table>
<tr>
<td>Username: <input type="text" name="username"/></td>
</tr>
<tr>
<td>Password: <input type="password" name="password"/></td>
</tr>
<tr>
<td><input class="but" type="submit" value="Login"/></td>
</tr>
</table>
</form>
<p>
Don't have Account? <a href="">
Click here to Register</a>
</p>
</body>
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
background:#cd7f32;
text-align:center;
}
.authenticate_profile {
text-align: center;
color: red;
font-size: 1.5em;
font-style: italic;
}
.authenticate{
margin: 0 auto;
margin-top: 5%;
padding: 5%;
width: inherit;
height: 200px;
text-align: left;
border-radius: 10px 10px;
background: #BDB76B;
}
tr {
font-size: 1.3em;
}
td {
Enter to Rename, Shift+Enter to Preview
js
js
1
alert("Thanks for run my simple code, this system is still under construction!");
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run