-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-us.html
155 lines (144 loc) · 5.07 KB
/
contact-us.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html 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">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.2/css/bulma.min.css"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Chango&family=Open+Sans+Condensed:wght@300&family=Thasadith&display=swap"
/>
<link rel="stylesheet" href="assets/css/hamburger.css"/>
<link rel="stylesheet" href="assets/css/contact-us.css"/>
<link rel="shortcut icon" type="image/png" href="./assets/images/pink_paw.png"/>
<title>PawPals/Contact-us</title>
</head>
<body>
<div class="menu">
<!--Paw Pals logo-->
<div class="logo">
<img src="./assets/images/pawpals.png" alt="paw pals logo" class="pawpalsLogo">
</div>
<div class="hamburger-menu-wrapper">
<button class="hamburger-menu">
<span>toggle menu</span>
</button>
</div>
<div class="menu-list">
<a href="swipe.html" id="ml-swipe">SWIPE</a><br>
<a href="about.html" id="ml-about">ABOUT</a><br>
<a href="my-profile.html" id="ml-profile">MY PROFILE</a><br>
<a href="matches.html" id="ml-matches">MATCHES</a><br>
</div>
</div>
<div class="menu-overlay"></div>
<div id="main-page-container" class="container">
<h1 class="contact-title">Contact Us</h1>
<!-- Form -->
<form class="contact-us-form" action="contact-us">
<div class="field">
<label class="label">Name</label>
<div class="control">
<input class="input is-rounded" type="text" placeholder="Who do we have the pleasure of speaking to?">
</div>
</div>
<div class="field">
<label class="label">Username</label>
<div class="control has-icons-right">
<input class="input is-rounded" type="text" placeholder="@YourUsername">
<span class="icon is-small is-left">
<i class="fas fa-user"></i>
</span>
<span class="icon is-small is-right">
<i class="fas fa-check"></i>
</span>
</div>
<!-- <p class="help is-success">This username is available</p> -->
</div>
<div class="field">
<label class="label">Email</label>
<div class="control has-icons-right">
<input class="input is-rounded" type="email" placeholder="Email input" value="hello@">
<span class="icon is-small is-left">
<i class="fas fa-envelope"></i>
</span>
<span class="icon is-small is-right">
<i class="fas fa-exclamation-triangle"></i>
</span>
</div>
<!-- <p class="help is-danger">This email is invalid</p> -->
</div>
<div class="field">
<label class="label">Subject</label>
<div class="control">
<div class="select is-rounded">
<select>
<option disabled selected>Select dropdown</option>
<option>Account Issue</option>
<option>You want to combine forces</option>
<option>Press</option>
<option>Technical support</option>
<option>Other</option>
</select>
</div>
</div>
</div>
<div class="field">
<label class="label">Message</label>
<div class="control">
<textarea class="textarea is-hovered" placeholder="Textarea"></textarea>
</div>
</div>
<div class="field">
<div class="control">
<label class="checkbox">
<input type="checkbox">
I agree to the <a href="#">terms and conditions</a>
</label>
</div>
</div>
<div class="field">
<div class="control">
<label class="radio">
<input type="radio" name="question">
Yes
</label>
<label class="radio">
<input type="radio" name="question">
No
</label>
</div>
</div>
<div class="field is-grouped">
<div class="control">
<button id="submit-btn" class="button is-link is-warning is-focused">Submit</button>
</div>
<div class="control">
<button class="button is-link is-danger is-focused">Cancel</button>
</div>
</div>
</form>
</div>
<article id="submitted-container" class="message is-success hide">
<div class="message-header">
<p>Pawsome!</p>
<button id="submitted-cross-message" class="delete" aria-label="delete"></button>
</div>
<div class="message-body">
We will be in touch soon!
</div>
</article>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous">
</script>
<script src="./assets/js/hamburger.js"></script>
<script src="./assets/js/contact-us.js"></script>
</body>
</html>