forked from sina-thr/Exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercise1.html
More file actions
27 lines (23 loc) · 782 Bytes
/
exercise1.html
File metadata and controls
27 lines (23 loc) · 782 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
<!DOCTYPE html>
<html>
<head>
<title> Login page</title>
<!-- Ezafe kardan css haye charchobe bootstrap-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- neveshtane taghirate khase in safhe -->
<link href="css/login.css" rel="stylesheet">
</head>
<body >
<div class="container">
<form class="form-signin">
<h1 class="form-signin-heading">Login Page</h1>
Username:
<!-- be item haye dakhel safhe class dadam az charchobe bootstrap -->
<input type="text" class="form-control" placeholder="username" /><br/>
Password:
<input type="password" class="form-control" placeholder="password" /><br/>
<input type="submit" class="btn btn-lg btn-primary btn-block" value="Login"/>
</form>
</div>
</body>
</html>