1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/data/html/reportbug.html

52 lines
1.9 KiB
HTML
Raw Normal View History

2011-09-19 20:49:39 +02:00
<html><head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
2011-09-19 20:49:39 +02:00
<title>%TITLE%</title>
<link rel="icon" href="%FAVICON%" type="image/x-icon" />
2011-09-19 20:49:39 +02:00
<style>
html {background: #eeeeee;font: 13px/22px "Helvetica Neue", Helvetica, Arial, sans-serif;color: #525c66;}
html * {font-size: 100%;line-height: 1.6;}
2012-08-18 16:01:26 +02:00
#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_STR%;direction: %DIRECTION%;}
h1 {color: #1a4ba4;font-size: 160%;margin-bottom: 0px;}
2012-08-18 16:01:26 +02:00
p {margin-%LEFT_STR%: 1%;}
.submit {width: 100px;}
select {width: 200px;}
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;
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>
<form action="http://www.qupzilla.com/reportbug.php" onsubmit="return checkFields()" method="POST">
<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>
2012-08-18 16:01:26 +02:00
<tr><td colspan=2 align=%RIGHT_STR%><input class="submit" type="submit" name="ok" value="%SEND%"> </tr>
2011-09-19 20:49:39 +02:00
</form>
</table>
</p>
<p>* %E-MAIL-OPTIONAL%</p>
</div>
</body></html>