forked from HarryPoter0/Front-end_Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform-component.html
More file actions
130 lines (129 loc) · 4.47 KB
/
form-component.html
File metadata and controls
130 lines (129 loc) · 4.47 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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, shrink-to-fit=no">
<title>Volunteer Overseas</title>
<link rel="shortcut icon" href="images/favicon.ico"/>
<link rel="stylesheet" href="css/media.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/main.js"></script>
<script src="js/select2.min.js"></script>
</head>
<body>
<!-- Admin-Login Start -->
<div class="wrapper admin-wrapper admin-login">
<!-- Header Start -->
<header class="login-header organization-header">
<div class="row header-row">
<div class="col-lg-2 col-sm-3 logo-outer">
<a href="index.html" title="Volunteer Overseas" class="logo"><img src="images/logo_1.png" alt="logo1"><img class="color-logo" src="images/logo.png" alt="logo"></a>
</div>
<div class="col-lg-10 col-sm-9 menu-wrap">
<nav>
<ul class="form-listing">
<li><a href="organization-page.html" title="Organization">Organization</a></li>
<li><a href="search-result.html" title="Projects">Projects</a></li>
<li><a href="#" title="Application">Application</a></li>
<li><a href="faq.html" title="FAQ">FAQ</a></li>
</ul>
<form class="my-2 my-sm-0 d-none d-sm-block">
<a href="login.html" class="btn btn-outline-success my-2 my-sm-0" title="Logout">Logout</a>
</form>
</nav>
</div>
</div>
<a href="#" title="" class="hamburger-icon"><span></span></a>
</header>
<!-- Header End -->
<!-- Main-Content Start -->
<main>
<section class="admin-section">
<div class="container listing-content">
<div class="with-box-shadow">
<h1>Form Elements</h1>
<!-- Form Start -->
<form name="formnew">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="textbox">Textbox</label>
<input type="text" class="form-control" id="textbox" name="txtname" placeholder="Search Country">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Drop down</label>
<select class="custom-dropdown">
<option>Animal conversation</option>
<option>Animal zoo</option>
<option>Animal crime</option>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="texticon">Textbox with icon</label>
<input type="text" class="form-control" id="texticon" name="txticon" placeholder="mm/dd/yy">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Check box</label>
<ul class="checkbox-listing clearfix">
<li>
<input type="checkbox" id="volunteer" checked="">
<label for="volunteer">Volunteer</label>
</li>
<li>
<input type="checkbox" id="teach">
<label for="teach">Teach</label>
</li>
<li>
<input type="checkbox" id="intern">
<label for="intern">Intern</label>
</li>
</ul>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>Radio button</label>
<ul class="radio-listing clearfix">
<li>
<input type="radio" id="volunteer1" checked="" name="radio">
<label for="volunteer1">Volunteer</label>
</li>
<li>
<input type="radio" id="teach1" name="radio">
<label for="teach1">Teach</label>
</li>
<li>
<input type="radio" id="intern1" name="radio">
<label for="intern1">Intern</label>
</li>
</ul>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<label>Textarea</label>
<textarea rows="9" name="area" placeholder="Textarea"></textarea>
</div>
</div>
<div class="col-md-12 form-bar">
<button type="button" class="btn btn-danger" title="Form Button">Form Button</button>
</div>
</div>
</form>
<!-- Form End -->
</div>
</div>
</section>
</main>
<!-- Main-Content End -->
</div>
<!-- Admin-Login End -->
</body>
</html>