-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (64 loc) · 2.69 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>MESCOE</title>
<!-- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css" />
<link rel="stylesheet" href="style.css">
</head>
<style>
</style>
<body>
<div style="text-align: right;">
<a class="fa fa-user btn btn-primary my-2 my-sm-0 " href="login.php" > Admin Login</a>
</div>
<div class="container">
<h1 class="brand"><span>MESCOE</span> Contact Form</h1>
<div class="wrapper">
<div class="company-info">
<h3>MESCOE</h3>
<ul>
<li><i class="fav fav-road"></i> Pune, India</li>
<li><i class="fa fa-phone"></i> 9890677134</li>
<li><i class="fa fa-envelope"></i> [email protected]</li>
</ul>
</div>
<div class="contact">
<h3>Contact Form</h3>
<div class="alert">Your message has been sent</div>
<form id="contactForm">
<p>
<label>Name <span style="color: red;">*</span> </label>
<input style="border-radius: 5px;" type="text" name="name" id="name" required>
</p>
<p>
<label>Class <span style="color: red;">*</span></label>
<input type="text" name="company" style="border-radius: 5px;" id="company" required>
</p>
<p>
<label>Email Address <span style="color: red;">*</span></label>
<input type="email" name="email" style="border-radius: 5px;" id="email" required>
</p>
<p>
<label>Phone Number <span style="color: red;">*</span> </label>
<input type="text" name="phone" style="border-radius: 5px;" id="phone" required>
</p>
<p class="full">
<label>Feedback / Suggestion / Purpose of Contact <span style="color: red;">*</span> </label>
<textarea name="message" rows="5" style="border-radius: 5px;" id="message"></textarea>
</p>
<p class="full">
<button style="background-color: green;" class="btn btn-success" type="submit">Submit</button>
</p>
</form>
</div>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/4.3.0/firebase.js"></script>
<script src="main.js"></script>
</body>
</html>