1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7+ < title > Login Box</ title >
8+ < link rel ="stylesheet " href ="stylelogin.css ">
9+ </ head >
10+ < body >
11+ < div class ="container ">
12+ < div class ="wrapper ">
13+ < div class ="form-box login ">
14+ < h2 > Login</ h2 >
15+ < form action ="index.html ">
16+ < div class ="input-box ">
17+ < span class ="icon "> < ion-icon name ="mail "> </ ion-icon > </ span >
18+ < input autocomplete ="off " autofocus type ="email " id ="email1 " required >
19+ < label > Email</ label >
20+ </ div >
21+ < div class ="input-box ">
22+ < span class ="icon "> < ion-icon name ="lock-closed "> </ ion-icon > </ span >
23+ < input autocomplete ="off " autofocus type ="password " id ="password1 " required >
24+ < label > Password</ label >
25+ </ div >
26+ < div class ="remember-forgot ">
27+ < label > < input type ="checkbox "> Remember me</ label >
28+ < a href ="# "> Forgot Password?</ a >
29+ </ div >
30+ < button type ="submit " class ="btn "> Login</ button >
31+ < div class ="login-register ">
32+ < p > Don't have an account? < a href ="# " class ="register-link "> Register</ a > </ p >
33+ </ div >
34+ </ form >
35+ </ div >
36+
37+ < div class ="form-box register ">
38+ < h2 > Registration</ h2 >
39+ < form action ="# " onsubmit ="register() ">
40+ < div class ="input-box ">
41+ < span class ="icon "> < ion-icon name ="person "> </ ion-icon > </ span >
42+ < input autocomplete ="off " autofocus type ="text " id ="username " required >
43+ < label > Username</ label >
44+ </ div >
45+ < div class ="input-box ">
46+ < span class ="icon "> < ion-icon name ="mail "> </ ion-icon > </ span >
47+ < input autocomplete ="off " autofocus type ="email " id ="email " required >
48+ < label > Email</ label >
49+ </ div >
50+ < div class ="input-box ">
51+ < span class ="icon "> < ion-icon name ="lock-closed "> </ ion-icon > </ span >
52+ < input autocomplete ="off " autofocus type ="password " id ="password " required >
53+ < label > Password</ label >
54+ </ div >
55+ < div class ="remember-forgot ">
56+ < label > < input type ="checkbox "> I agree to the terms and conditions</ label >
57+ </ div >
58+ < button type ="submit " class ="btn "> Register</ button >
59+ < div class ="login-register ">
60+ < p > Already have an account? < a href ="# " class ="login-link "> Login</ a > </ p >
61+ </ div >
62+ </ form >
63+ </ div >
64+ </ div >
65+ </ div >
66+
67+ < script src ="signup_script.js "> </ script >
68+ </ body >
69+ </ html >
0 commit comments