forked from yeghiakoronian/BuyACar-Ecommerce-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
support.php
77 lines (67 loc) · 2.59 KB
/
support.php
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
<?php
include 'core/init.php';
include 'includes/overall/header.php';
include 'includes/fak.php';
?>
<h1>Frequently Asked Questions</h1>
<DIV class="FAQ" onclick="toggle('faq3')">
whats my partners name?.
<div id="faq3" class="ANS">yeghia.</div>
</DIV>
<DIV class="FAQ" onclick="toggle('faq2')">
whats my name?.
<div id="faq2" class="ANS">omar.</div>
</DIV>
<h1>If this doesnt answer your question? contact us on:</h1>
<form name="form1" method="post" action="">
<table width="788" border="0">
<tr>
<td width="782"><label for="firstnme">First Name:</label>
<span id="sprytextfield1">
<input type="text" name="firstnme" id="firstnme">
<span class="textfieldRequiredMsg">A value is required.</span></span><code><em>e.g. Yeghia</em></code></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<label for="lname">Last Name:</label>
<span id="sprytextfield2">
<input type="text" name="lname" id="lname">
<span class="textfieldRequiredMsg">A value is required.</span></span> <code><em>e.g. El-Cheikh</em></code></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><label for="email">Email:</label>
<span id="sprytextfield3">
<input type="text" name="email" id="email">
<span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid formaxddddddd</span></span><em><code>e.g. omz@gmail.com</code></em></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><label for="message">Message:</label>
<span id="sprytextarea1">
<textarea name="message" id="message"></textarea>
<span class="textareaRequiredMsg">A value is required.</span></span></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><input type="submit" name="send" id="send" value="Send Message"></td>
</tr>
</table>
</form>
<p> </p>
<script type="text/javascript">
var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2");
var sprytextarea1 = new Spry.Widget.ValidationTextarea("sprytextarea1");
var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "email");
</script>
<?php include 'includes/overall/footer.php'; ?>