-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathui-forms.html
62 lines (58 loc) · 2.36 KB
/
ui-forms.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dumbo Dashboard - UI Forms</title>
<!-- favion -->
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/">
<!-- include bootstrap css -->
<link media="all" rel="stylesheet" href="assets/vendors/bootstrap/css/bootstrap.min.css">
<!-- include main css -->
<link media="all" rel="stylesheet" href="assets/css/main.css">
<!-- include font css -->
<link media="all" rel="stylesheet" href="assets/fonts/font.css">
</head>
<body class="bg-white">
<div class="container">
<div class="row mt-4">
<div class="col-md-4">
<div class="form-group">
<label for="input">Input</label>
<input type="text" name="" id="" placeholder="" class="form-control">
</div>
<div class="form-group position-relative">
<label for="input">Input with icon</label>
<input type="text" name="" id="" placeholder="" class="form-control">
<img src="assets/icons/feather/user.svg" class="input-icon" />
</div>
<div class="form-group">
<label for="input">Input error</label>
<input type="text" name="" id="" placeholder="" class="form-control">
<span class="mt-2">
This field is required
</span>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label for="input">Textarea</label>
<textarea class="form-control" rows="4"></textarea>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label for="">Select</label>
<select class="form-control">
<option selected>Choose option</option>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</select>
</div>
</div>
</div>
</div>
</body>
</html>