2011-09-19 20:49:39 +02:00
|
|
|
<html><head>
|
|
|
|
<title>%TITLE%</title>
|
2011-12-02 23:25:27 +01:00
|
|
|
<link rel="icon" href="%FAVICON%" type="image/x-icon" />
|
2011-09-19 20:49:39 +02:00
|
|
|
<style>
|
2011-12-02 23:25:27 +01:00
|
|
|
html {background: #eeeeee;font: 13px/22px "Helvetica Neue", Helvetica, Arial, sans-serif;color: #525c66;}
|
|
|
|
html * {font-size: 100%;line-height: 1.6;}
|
|
|
|
#box {max-width: 650px;overflow:auto;margin: 25px auto 10px auto;padding: 10px 40px;border-width: 20px;-webkit-border-image: url(%BOX-BORDER%) 25;text-align: left;}
|
|
|
|
h1 {color: #1a4ba4;font-size: 160%;margin-bottom: 0px;}
|
|
|
|
p {margin-left: 1%;}
|
|
|
|
input {width: 200px;}
|
|
|
|
.submit {width: 100px;}
|
|
|
|
select {width: 200px;}
|
|
|
|
textarea {width: 400px;height: 100px;}
|
2011-09-19 20:49:39 +02:00
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
function checkFields()
|
|
|
|
{
|
|
|
|
var type = document.getElementById("type").value;
|
|
|
|
var priority = document.getElementById("priority").value;
|
|
|
|
var description = document.getElementById("text").value;
|
|
|
|
|
|
|
|
if (type == null || type == "" || priority == null || priority == "" || description == null || description == "") {
|
|
|
|
alert("%FIELDS-ARE-REQUIRED%");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="box">
|
|
|
|
|
|
|
|
<h1>%REPORT-ISSUE%</h1>
|
|
|
|
<p>%PLUGINS-TEXT%</p>
|
|
|
|
<p style="display:none" id="result"> </p>
|
|
|
|
<p>
|
|
|
|
<table>
|
2011-10-10 15:55:06 +02:00
|
|
|
<form action="http://qupzilla.co.cc/reportbug.php" onsubmit="return checkFields()" method="POST">
|
2011-09-19 20:49:39 +02:00
|
|
|
<tr><td>%EMAIL%*:</td><td><input type="text" id="mail" name="mail"> </tr>
|
|
|
|
<tr><td>%TYPE%:</td><td><input type="text" id="type" name="type"> </tr>
|
|
|
|
<tr><td>%PRIORITY%:</td><td><select id="priority" name="priority"> <option>%LOW%</option><option>%NORMAL%</option><option>%HIGH%</option> </select></tr>
|
|
|
|
<tr><td>%DESCRIPTION%:</td><td><textarea id="text" name="text"> </textarea> </tr>
|
|
|
|
<tr><td colspan=2 align=right><input class="submit" type="submit" name="ok" value="%SEND%"> </tr>
|
|
|
|
</form>
|
|
|
|
</table>
|
|
|
|
</p>
|
|
|
|
<p>* %E-MAIL-OPTIONAL%</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body></html>
|