File tree 1 file changed +49
-0
lines changed
password-strength-background
1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 " />
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
6
+ < link
7
+ rel ="stylesheet "
8
+ href ="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.8.11/tailwind.min.css "
9
+ integrity ="sha512-KO1h5ynYuqsFuEicc7DmOQc+S9m2xiCKYlC3zcZCSEw0RGDsxcMnppRaMZnb0DdzTDPaW22ID/gAGCZ9i+RT/w== "
10
+ crossorigin ="anonymous "
11
+ />
12
+ < link rel ="stylesheet " href ="style.css " />
13
+ < title > Password Strength Backround</ title >
14
+ </ head >
15
+ < body >
16
+ < div class ="background " id ="background "> </ div >
17
+ < div class ="bg-white rounded p-10 text-center shadow-md ">
18
+ < h1 class ="text-3xl "> Image Password Strength</ h1 >
19
+ < p class ="text-sm text-gray-700 "> Change the password to see the effect</ p >
20
+ < div class ="my-4 text-left ">
21
+ < label for ="email " class ="text-gray-900 "> Email:</ label >
22
+ < input
23
+ type ="text "
24
+ class ="border block w-full p-2 mt-2 rounded "
25
+ id ="email "
26
+ placeholder ="Enter Email "
27
+ />
28
+ </ div >
29
+
30
+ < div class ="my-4 text-left ">
31
+ < label for ="email " class ="text-gray-900 "> Password:</ label >
32
+ < input
33
+ type ="password "
34
+ class ="border block w-full p-2 mt-2 rounded "
35
+ id ="password "
36
+ placeholder ="Enter Password "
37
+ />
38
+ </ div >
39
+
40
+ < button
41
+ class ="bg-black text-white py-2 mt-4 inline-block w-full rounded "
42
+ type ="submit "
43
+ >
44
+ Submit
45
+ </ button >
46
+ </ div >
47
+ < script src ="script.js "> </ script >
48
+ </ body >
49
+ </ html >
You can’t perform that action at this time.
0 commit comments