2011-09-19 20:49:39 +02:00
|
|
|
<html><head>
|
2012-01-15 17:15:48 +01:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
2011-09-19 20:49:39 +02:00
|
|
|
<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%;}
|
|
|
|
.submit {width: 100px;}
|
|
|
|
select {width: 200px;}
|
2011-12-04 16:54:57 +01:00
|
|
|
textarea {width: 400px;height: 100px; border: 1px solid #babcb8;}
|
|
|
|
textarea:focus {border-color: #579eea;}
|
|
|
|
input[type="text"], input[type="email"] {width: 200px;height: 25px;border: 1px solid #babcb8;}
|
|
|
|
input[type="text"]:focus, input[type="email"]:focus {border-color: #579eea;}
|
2011-09-19 20:49:39 +02:00
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
function checkFields()
|
|
|
|
{
|
|
|
|
var type = document.getElementById("type").value;
|
|
|
|
var description = document.getElementById("text").value;
|
|
|
|
|
2011-12-04 16:54:57 +01:00
|
|
|
if (type == null || type == "" || description == null || description == "") {
|
|
|
|
alert("%FIELDS-ARE-REQUIRED%");
|
|
|
|
return false;
|
2011-09-19 20:49:39 +02:00
|
|
|
}
|
|
|
|
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-12-31 10:33:01 +01:00
|
|
|
<form action="http://qupzilla.com/reportbug.php" onsubmit="return checkFields()" method="POST">
|
2011-12-04 16:54:57 +01:00
|
|
|
<tr><td>%EMAIL%*:</td><td><input type="text" id="mail" name="mail" required> </tr>
|
|
|
|
<tr><td>%TYPE%:</td><td><input type="text" id="type" name="type" required> </tr>
|
|
|
|
<tr><td>%DESCRIPTION%:</td><td><textarea id="text" name="text" required></textarea> </tr>
|
2011-09-19 20:49:39 +02:00
|
|
|
<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>
|