2012-08-21 20:28:38 +02:00
|
|
|
<html><head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<link rel="icon" href="%FAVICON%" type="image/x-icon" />
|
|
|
|
<title>%TITLE%</title>
|
|
|
|
<style>
|
2014-05-29 19:02:58 +02:00
|
|
|
html {background: #dddddd;font-family: sans-serif;color: #525c66;}
|
2012-08-21 20:28:38 +02:00
|
|
|
html * {font-size: 100%;line-height: 1.6;}
|
|
|
|
#box {max-width:650px;min-width:400px;overflow:auto;margin: 25px auto 10px auto;padding: 10px 40px;border-width: 20px;text-align: %LEFT_STR%;-webkit-border-image: url(%BOX-BORDER%) 25;direction: %DIRECTION%;}
|
|
|
|
hr {color: lightgray;width: 100%;}
|
|
|
|
img {float: %LEFT_STR%;margin-%LEFT_STR%: -20px;margin-top: 15px;}
|
|
|
|
h1 {font-size: 150%;font-weight: bold;border-bottom: 1px solid #f4f4f4;margin-%LEFT_STR%: 48px;margin-%RIGHT_STR%: 50px;}
|
|
|
|
h2 {font-size: 100%;font-weight: normal;border-bottom: 1px solid #f4f4f4;margin-%LEFT_STR%: 48px;padding: 5px 0px 10px 2px;margin-%RIGHT_STR%: 50px;}
|
|
|
|
ul {font-size: 90%;padding-%LEFT_STR%: 48px;margin: 20px 0;max-width:600px;}
|
|
|
|
li {padding: 5px;}
|
2015-09-24 22:46:35 +02:00
|
|
|
#buttons {margin: 20px 50px;}
|
|
|
|
#restore-session-button {font-weight: bold;}
|
2012-08-21 20:28:38 +02:00
|
|
|
</style>
|
2015-09-24 22:46:35 +02:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
function startNewSession()
|
|
|
|
{
|
|
|
|
document.getElementById("start-new-session-button").disabled = true;
|
|
|
|
external.recovery.startNewSession();
|
|
|
|
}
|
|
|
|
|
|
|
|
function restoreSession()
|
|
|
|
{
|
|
|
|
document.getElementById("restore-session-button").disabled = true;
|
|
|
|
external.recovery.restoreSession();
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
2012-08-21 20:28:38 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="box">
|
|
|
|
<img src="data:image/png;base64,%IMAGE%" >
|
|
|
|
<h1>%OOPS%</h1>
|
|
|
|
<h2>%APOLOGIZE%</h2>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>%TRY-REMOVING%</li>
|
|
|
|
<li>%START-NEW%</li>
|
|
|
|
</ul>
|
2015-09-24 22:46:35 +02:00
|
|
|
|
|
|
|
<div id="buttons">
|
|
|
|
<input type="button" id="start-new-session-button" value="Start New Session" onclick="startNewSession();">
|
|
|
|
<input type="button" id="restore-session-button" value=" Restore " onclick="restoreSession();">
|
|
|
|
</div>
|
2012-08-21 20:28:38 +02:00
|
|
|
</div>
|
|
|
|
</body></html>
|