-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
69 lines (67 loc) · 3.21 KB
/
form.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
63
64
65
66
67
68
69
<!DOCTYPE html>
<html class="no-js" 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">
<meta name="description" content="">
<meta name="author" content="">
<title>Media Queries</title>
<link rel="stylesheet" href="form.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<form class="form-data" action="http://itcraft.com.ua/html-css-internship-2016-0439599340/form-controller.php" method="post">
<h1>Request a demo</h1>
<div class="column">
<div class="row first">
<input class='default-border' type="text" id="first_name" name="first_name" autofocus="autofocus" />
<label class="default-color" for="first_name">First Name</label>
</div>
<div class="row">
<input class='default-border' type="email" id="email" name="email" required="required" />
<label class="default-color" for="email">Email<b>*</b></label>
</div>
<div class="row">
<input class='default-background-image default-border' type="text" id="shool_organization" name="shool_organization" required="required" />
<label class="default-color" for="shool_organization">School/Organization<b>*</b></label>
</div>
</div>
<div class="column">
<div class="row first">
<input class='default-border' type="text" id="last_name" name="last_name" />
<label class="default-color" for="last_name">Last Name</label>
</div>
<div class="row">
<input class="phone-country default-border" type="tel" id="phone" name="country" required="required" value="" />
<input class="phone-code default-border" type="tel" name="code" required="required" value="" />
<input class="phone-number default-border" type="tel" name="number" required="required" value="" />
<label class="default-color" for="phone">Phone Number</label>
</div>
<div class="row">
<input class='default-border' type="text" id="role" name="cat_name" required="required" />
<label class="default-color" for="role">Role on Campus<b>*</b></label>
</div>
</div>
<div class="column">
<div class="row">
<textarea class='default-border' id="goal" name="goal" required="required"></textarea>
<label class="default-color" for="goal">What are yuo goals for Demo System?<b>*</b></label>
</div>
</div>
<div class="colum-checkbox">
<input type="checkbox" id="chb-1" name="chb-1" checked="checked" /><label for="chb-1">I agree to the Demo System <span>Terms of service</span> and <span>Privacy Policy</span></label>
</div>
<div class="colum-submit">
<input class="button-submit" type="submit" value="Submit" />
<input class="button-submit" type="reset" value="Cansel" />
</div>
</form>
</div>
</body>
</html>