-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
111 lines (105 loc) · 5.78 KB
/
signup.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
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
<!doctype html>
<html lang="en">
<head>
<title>Contact Form 02</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 text-center mb-5">
<h2 class="heading-section">Contact Form by <strong>Sreenath Kumar</strong></h2>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-12">
<div class="wrapper">
<div class="row no-gutters">
<div class="col-lg-8 col-md-7 order-md-last d-flex align-items-stretch">
<div class="contact-wrap w-100 p-md-5 p-4">
<h3 class="mb-4">Get in touch</h3>
<div id="form-message-warning" class="mb-4"></div>
<div id="form-message-success" class="mb-4">
Your message was sent, thank you!
</div>
<form method="POST" action="/" id="contactForm" name="contactForm" class="contactForm">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label class="label" for="name">Full Name</label>
<input type="text" class="form-control" name="name" id="name" placeholder="Name"
required>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="label" for="email">Email Address</label>
<input type="email" class="form-control" name="email" id="email"
placeholder="Email" required>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="label" for="subject">Phone Number</label>
<input type="text" class="form-control" name="phone" id="phone"
placeholder="Phone Number" required>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="label" for="subject">Home District</label>
<input type="text" class="form-control" name="district" id="district"
placeholder="Home District" required>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<label class="label" for="#">Message</label>
<textarea name="message" class="form-control" id="message" cols="30" rows="4"
placeholder="Message"></textarea>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<input type="checkbox" name="open" id="open">
<label class="label ml-10" for="open">Always open to answer</label>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<input type="submit" value="Send Info" class="btn btn-primary">
<div class="submitting"></div>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-4 col-md-5 d-flex align-items-stretch">
<div class="info-wrap bg-primary w-100 p-md-5 p-4">
<h3>Please Read This</h3>
<p>The purpose of this form is to test my system. I have built this web app
and I want you to test it. And also I have not any contact information about
some of you .So I made this tool to collect your information and also test my system in
same time.So I hope you will co operate to test this tool.
</p>
<p>
Please Do Not Submit any Fake Information. Because I will contact you with this
information. Thank you so much. :)
</p>
<p>
--- Sreenath Kumar.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>