-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform2.html
More file actions
90 lines (79 loc) · 3.76 KB
/
form2.html
File metadata and controls
90 lines (79 loc) · 3.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Colorlib Templates">
<meta name="author" content="Colorlib">
<meta name="keywords" content="Colorlib Templates">
<!-- Title Page-->
<title>Form</title>
<!-- Main CSS-->
<link href="/form/css/main.css" rel="stylesheet" >
</head>
<body>
<div class="page-wrapper bg-gra-03 p-t-45 p-b-50">
<div class="wrapper wrapper--w790">
<div class="card card-5">
<div class="card-heading">
<h2 class="title">Event Registration Form</h2>
</div>
<div class="card-body">
<form action="post/success.html" method="post" enctype="multipart/form-data">
<div class="form-row m-b-55">
<div class="name">Name</div>
<div class="value">
<div class="row row-space">
<div class="col-2">
<div class="input-group-desc">
<input class="input--style-5" type="text" name="first_name" required>
<label class="label--desc">first name</label>
</div>
</div>
<div class="col-2">
<div class="input-group-desc">
<input class="input--style-5" type="text" name="last_name" required>
<label class="label--desc">last name</label>
</div>
</div>
</div>
</div>
</div>
<div class="form-row">
<div class="name" >Email</div>
<div class="value">
<div class="input-group">
<input class="input--style-5" type="email" name="email" required>
</div>
</div>
</div>
<div class="form-row m-b-55">
<div class="name">Phone</div>
<div class="value">
<div class="row row-refine">
<div class="col-9">
<div class="input-group-desc">
<input class="input--style-5" type="text" name="phone" required>
<label class="label--desc">Phone Number</label>
</div>
</div>
</div>
</div>
</div>
<div class="form-row p-t-20">
<input type="file" id="myfile" name="myfile">
</div>
<div>
<button class="btn btn--radius-2 btn--red" type="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Main JS-->
<script src="form/js/global.js"></script>
</body><!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>
<!-- end document-->