1
+ <!doctype html>
2
+ < html >
3
+ < head >
4
+ < meta charset ="utf-8 ">
5
+ < title > CSS Chassis - Inputs</ title >
6
+ < meta name ="description " content ="Button skeleton for styling ">
7
+ < meta name ="viewport " content ="width=device-width, initial-scale=1 ">
8
+ < link rel ="stylesheet " href ="../dist/css/chassis.css ">
9
+ < link rel ="stylesheet " href ="demos.css ">
10
+ </ head >
11
+ < body >
12
+
13
+ < h2 > Inputs</ h2 >
14
+
15
+ < label class ="input-label "> Name: </ label >
16
+ < input class ="input " type ="text " placeholder ="Enter your Name ">
17
+
18
+ < label class ="input-label "> Password: </ label >
19
+ < input class ="input " type ="password " placeholder ="Choose a password ">
20
+
21
+ <!-- <label class="input-label">Color: </label>
22
+ <input class="input" type="color">
23
+ -->
24
+ < label class ="input-label "> Email: </ label >
25
+ < input class ="
input "
type ="
email "
placeholder ="
[email protected] "
>
26
+
27
+ <!-- <label class="input-label">Date: </label>
28
+ <input class="input" type="date">
29
+ -->
30
+ < label class ="input-label "> Amount: </ label >
31
+ < input class ="input " type ="number " placeholder ="XX ">
32
+
33
+ < h2 > Inputs (Disabled) </ h2 >
34
+
35
+ < label class ="input-label "> Name: </ label >
36
+ < input class ="input disabled " type ="text " placeholder ="Enter your Name ">
37
+
38
+ < label class ="input-label "> Password: </ label >
39
+ < input class ="input disabled " type ="password " placeholder ="Choose a password ">
40
+
41
+ <!-- <label class="input-label">Color: </label>
42
+ <input class="input disabled" type="color">
43
+ -->
44
+ < label class ="input-label "> Email: </ label >
45
+ < input class ="
input disabled "
type ="
email "
placeholder ="
[email protected] "
>
46
+
47
+ <!-- <label class="input-label">Date: </label>
48
+ <input class="input disabled" type="date">
49
+ -->
50
+ < label class ="input-label "> Amount: </ label >
51
+ < input class ="input disabled " type ="number " placeholder ="XX ">
52
+
53
+ < h2 > Inputs (Focus) </ h2 >
54
+
55
+ < label class ="input-label "> Name: </ label >
56
+ < input class ="input focus " type ="text " placeholder ="Enter your Name ">
57
+
58
+ < label class ="input-label "> Password: </ label >
59
+ < input class ="input focus " type ="password " placeholder ="Choose a password ">
60
+
61
+ <!-- <label class="input-label">Color: </label>
62
+ <input class="input focus" type="color">
63
+ -->
64
+ < label class ="input-label "> Email: </ label >
65
+ < input class ="
input focus "
type ="
email "
placeholder ="
[email protected] "
>
66
+
67
+ <!-- <label class="input-label">Date: </label>
68
+ <input class="input focus" type="date">
69
+ -->
70
+ < label class ="input-label "> Amount: </ label >
71
+ < input class ="input focus " type ="number " placeholder ="XX ">
72
+
73
+ < h2 > Inputs (Active) </ h2 >
74
+
75
+ < label class ="input-label "> Name: </ label >
76
+ < input class ="input active " type ="text " placeholder ="Enter your Name ">
77
+
78
+ < label class ="input-label "> Password: </ label >
79
+ < input class ="input active " type ="password " placeholder ="Choose a password ">
80
+
81
+ <!-- <label class="input-label">Color: </label>
82
+ <input class="input active" type="color">
83
+ -->
84
+ < label class ="input-label "> Email: </ label >
85
+ < input class ="
input active "
type ="
email "
placeholder ="
[email protected] "
>
86
+
87
+ <!-- <label class="input-label">Date: </label>
88
+ <input class="input active" type="date">
89
+ -->
90
+ < label class ="input-label "> Amount: </ label >
91
+ < input class ="input active " type ="number " placeholder ="XX ">
92
+
93
+ < h2 > Inputs (Error) </ h2 >
94
+
95
+ < label class ="input-label "> Name: </ label >
96
+ < input class ="input error " type ="text " placeholder ="Enter your Name ">
97
+ < label class ="input-label error "> We were unable to process your input.</ label >
98
+
99
+ < label class ="input-label "> Password: </ label >
100
+ < input class ="input error " type ="password " placeholder ="Choose a password ">
101
+ < label class ="input-label error "> We were unable to process your input.</ label >
102
+
103
+ <!-- <label class="input-label">Color: </label>
104
+ <input class="input error" type="color">
105
+ <label class="input-label error">We were unable to process your input.</label>
106
+ -->
107
+ < label class ="input-label "> Email: </ label >
108
+ < input class ="
input error "
type ="
email "
placeholder ="
[email protected] "
>
109
+ < label class ="input-label error "> We were unable to process your input.</ label >
110
+
111
+ <!-- <label class="input-label">Date: </label>
112
+ <input class="input error" type="date">
113
+ <label class="input-label error">We were unable to process your input.</label>
114
+ -->
115
+ < label class ="input-label "> Amount: </ label >
116
+ < input class ="input error " type ="number " placeholder ="XX ">
117
+ < label class ="input-label error "> We were unable to process your input.</ label >
118
+
119
+
120
+ </ body >
121
+ </ html >
0 commit comments