File tree Expand file tree Collapse file tree 1 file changed +66
-0
lines changed
Expand file tree Collapse file tree 1 file changed +66
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html >
3+ < head >
4+ < title > Login Page</ title >
5+ < style >
6+ body {
7+ font-family : Arial, sans-serif;
8+ background-color : # f4f4f4 ;
9+ margin : 0 ;
10+ padding : 0 ;
11+ }
12+
13+ .container {
14+ width : 300px ;
15+ margin : 0 auto;
16+ padding-top : 100px ;
17+ }
18+
19+ .form-group {
20+ margin-bottom : 20px ;
21+ }
22+
23+ .form-group label {
24+ display : block;
25+ font-weight : bold;
26+ margin-bottom : 5px ;
27+ }
28+
29+ .form-group input [type = "text" ],
30+ .form-group input [type = "password" ] {
31+ width : 100% ;
32+ padding : 8px ;
33+ font-size : 16px ;
34+ border : 1px solid # ccc ;
35+ border-radius : 4px ;
36+ }
37+
38+ .form-group input [type = "submit" ] {
39+ background-color : # 4CAF50 ;
40+ color : white;
41+ border : none;
42+ padding : 10px 16px ;
43+ font-size : 16px ;
44+ cursor : pointer;
45+ border-radius : 4px ;
46+ }
47+ </ style >
48+ </ head >
49+ < body >
50+ < div class ="container ">
51+ < form >
52+ < div class ="form-group ">
53+ < label for ="username "> Username:</ label >
54+ < input type ="text " id ="username " name ="username " placeholder ="Enter your username " required >
55+ </ div >
56+ < div class ="form-group ">
57+ < label for ="password "> Password:</ label >
58+ < input type ="password " id ="password " name ="password " placeholder ="Enter your password " required >
59+ </ div >
60+ < div class ="form-group ">
61+ < input type ="submit " value ="Login ">
62+ </ div >
63+ </ form >
64+ </ div >
65+ </ body >
66+ </ html >
You can’t perform that action at this time.
0 commit comments