-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontact.html
70 lines (66 loc) · 2.43 KB
/
contact.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
---
layout: sub-page
title: Contact Us
description: Leave your info below and we will be in touch right away.
className: contact
---
<section>
<div class="section-background">
<div class="section-wrapper"></div>
</div>
<div class="section-wrapper">
<div class="form-wrapper">
<form>
<div class="form-field">
<input type="text" name="firstName" id="firstName" placeholder="First Name" required />
<input type="text" name="lastName" id="lastName" placeholder="Second Name" required />
</div>
<div class="form-field">
<input type="email" name="email" placeholder="Email Address" required />
</div>
<div class="form-field">
<input type="text" name="organizationName" placeholder="Company Name" required />
</div>
<div class="form-field">
<input type="text" name="organizationName" placeholder="Phone Number" required />
</div>
<!-- <div class="form-field"> -->
<!-- <select required> -->
<!-- <option value="" disabled selected hidden>Demo for PM2 Enterprise</option> -->
<!-- <option value="Demo1">Demo1</option> -->
<!-- <option value="Demo2">Demo2</option> -->
<!-- <option value="Demo3">Demo3</option> -->
<!-- <option value="Demo4">Demo4</option> -->
<!-- <option value="Demo5">Demo5</option> -->
<!-- </select> -->
<!-- <img src="{{site.url}}/assets/drop-arrow.png"> -->
<!-- </div> -->
<div class="form-field">
<select required>
<option value="" disabled selected hidden>How many Node.js Applications do your organization runs?</option>
{% for i in (1..50) %}
<option value="{{i}}">{{ i }}</option>
{% endfor %}
</select>
<img src="{{site.url}}/assets/drop-arrow.png">
</div>
<div class="form-field">
<textarea placeholder="Describe your Inquiry here..."></textarea>
</div>
<div class="success-message">
Inquiry Sent
</div>
<div class="error-message">
Failed to send inquiry
</div>
<center>
<button type="submit" class="button-sub">
Submit
</button>
</center>
</form>
</div>
</div>
</section>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="/assets/contact.js"></script>