-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcontact2.php
113 lines (103 loc) · 3.88 KB
/
contact2.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
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
<?php
$title = 'MAME | Contact the Team';
?>
<?php require($_SERVER['DOCUMENT_ROOT'] . '/_include/html/header.html'); ?>
<!-- Page Content -->
<div class="container">
<center><h1 class="page-header">Contacting the MAME Team</h1></center>
<?php /*
<p>
If you need to contact the MAME development team for any reason, please fill out the form below. Make
sure you select the appropriate person or group to send it to.
</p>
<p>
If you think you have found a bug in MAME, or are having trouble using the software, go back to the
<a href="contact.php">main contact page</a> and select the appropriate option.
Email sent to this address regarding bugs or user support will be ignored completely.
</p>
<script language="JavaScript" type="text/javascript">
//<![CDATA[
function setupMenu(form)
{
var defSelection = location.href.split("?")[1];
if (defSelection != null)
{
var i;
for (i = 0; i < form.recipient.length; i++)
if (form.recipient.options[i].value == defSelection)
form.recipient.selectedIndex = i;
}
}
function checkForm(form)
{
if (form.recipient.value == "dummy" || form.recipient.value == "-")
{
alert("Please select a recipient from the popup list.");
return false;
}
if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(form.email.value)))
{
alert("Please enter a valid email address.")
return false;
}
form.action="sendmail.php";
return true;
}
//]]>
</script>
<form onsubmit="return checkForm(this)" name="email" method="post" action="#">
<input type="hidden" name="success" value="sent.html" />
<div class="input-group">
<span class="input-group-addon">Send To:</span>
<select name="recipient" class="form-control">
<option selected="selected" value="dummy">Select a recipient...</option>
<option value="-">---</option>
<option value="webmaster">MAMEDev.org Webmaster</option>
<option value="legal">MAME License/Trademark Questions</option>
<option value="-">---</option>
<option value="team">MAME Team (general)</option>
</select>
</div>
<br/>
<div class="input-group">
<span class="input-group-addon">From:</span>
<input type="text" size="50" name="email" class="form-control" />
</div>
<br/>
<div class="input-group">
<span class="input-group-addon">Subject:</span>
<input type="text" size="50" name="subject" class="form-control"/>
</div>
<br/>
<div class="input-group">
<span class="input-group-addon">Message:</span>
<textarea name="comment" cols="75" rows="10"class="form-control"></textarea>
</div>
<br/>
<div class="input-group">
<input type="submit" name="submit" value="Send" class="btn btn-success"/>
<input type="reset" name="reset" value="Reset" class="btn btn-warning"/>
</div>
</form>
*/ ?>
<p>
If you need to contact the MAME development team for any reason, please register and post at one of
the following forums:
</p>
<ul>
<li><a href="https://github.com/orgs/mamedev/discussions">MAMEdev Discussions on GitHub</a></li>
<li><a href="https://forum.mamedev.org/">MAMEdev Forum</a></li>
<li><a href="https://reddit.com/r/MAME/">r/MAME on reddit</a></li>
<li><a href="https://forums.bannister.org/">Emuversal Bulletin Board</a></li>
</ul>
<p>
If you think you have found a bug in MAME, or are having trouble using the software, go back to the
<a href="contact.php">main contact page</a> and select the appropriate option.
</p>
<p>
The e-mail contact form currently unavailable due to abuse.
</p>
</div>
<!-- /.container -->
<br/><br/><br/>
<?php require($_SERVER['DOCUMENT_ROOT'] . '/_include/html/footer.html'); ?>