add new images and templates for re-design
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
38
templates/Froxlor/misc/alreadyinstalledhint.tpl
Normal file
38
templates/Froxlor/misc/alreadyinstalledhint.tpl
Normal file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="iso-8859-1" />
|
||||
<meta http-equiv="Default-Style" content="text/css" />
|
||||
<link rel="stylesheet" href="../templates/Froxlor/froxlor.css" />
|
||||
<!--[if IE]><link rel="stylesheet" href="../templates/Froxlor/froxlor_ie.css" /><![endif]-->
|
||||
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||||
<script type="text/javascript" src="../templates/Froxlor/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../templates/Froxlor/js/froxlor.js"></script>
|
||||
<title>Froxlor Server Management Panel - Installation</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="loginpage">
|
||||
<article class="login bradius">
|
||||
<header class="dark">
|
||||
<img src="../images/Froxlor/logo.png" alt="Froxlor Server Management Panel" />
|
||||
</header>
|
||||
|
||||
<section class="loginsec">
|
||||
<h2>Welcome to Froxlor</h2>
|
||||
<p>It seems that Froxlor has already been configured.</p>
|
||||
<p>Click on the link below to go to the login page.</p>
|
||||
<p class="submit">
|
||||
<a href="../index.php" title="Click to go to the login page">Go to login</a>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
</article>
|
||||
</div>
|
||||
<footer>
|
||||
<span>
|
||||
Froxlor © 2009-2010 by <a href="http://www.froxlor.org/" rel="external">the Froxlor Team</a>
|
||||
</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
38
templates/Froxlor/misc/configurehint.tpl
Normal file
38
templates/Froxlor/misc/configurehint.tpl
Normal file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="iso-8859-1" />
|
||||
<meta http-equiv="Default-Style" content="text/css" />
|
||||
<link rel="stylesheet" href="./templates/Froxlor/froxlor.css" />
|
||||
<!--[if IE]><link rel="stylesheet" href="./templates/Froxlor/froxlor_ie.css" /><![endif]-->
|
||||
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||||
<script type="text/javascript" src="./templates/Froxlor/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="./templates/Froxlor/js/froxlor.js"></script>
|
||||
<title>Froxlor Server Management Panel - Installation</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="loginpage">
|
||||
<article class="login bradius">
|
||||
<header class="dark">
|
||||
<img src="./images/Froxlor/logo.png" alt="Froxlor Server Management Panel" />
|
||||
</header>
|
||||
|
||||
<section class="loginsec">
|
||||
<h2>Welcome to Froxlor</h2>
|
||||
<p>It seems that Froxlor has not been installed yet.</p>
|
||||
<p>Click on the link below to start the installation.</p>
|
||||
<p class="submit">
|
||||
<a href="./install/install.php" title="Click to start the install process">Start install</a>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
</article>
|
||||
</div>
|
||||
<footer>
|
||||
<span>
|
||||
Froxlor © 2009-2010 by <a href="http://www.froxlor.org/" rel="external">the Froxlor Team</a>
|
||||
</span>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
8
templates/Froxlor/misc/error.tpl
Normal file
8
templates/Froxlor/misc/error.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<div class="errorcontainer bradius">
|
||||
<div class="errortitle">{$lng['error']['error']}</div>
|
||||
<div class="error">$error</div>
|
||||
</div>
|
||||
</div>
|
||||
$footer
|
||||
1
templates/Froxlor/misc/form/input_text.tpl
Normal file
1
templates/Froxlor/misc/form/input_text.tpl
Normal file
@@ -0,0 +1 @@
|
||||
<input type="{$type}" name="{$fieldname}" id="{$fieldname}" value="{$value}"{$extras} />{$ulfield}
|
||||
1
templates/Froxlor/misc/form/input_textarea.tpl
Normal file
1
templates/Froxlor/misc/form/input_textarea.tpl
Normal file
@@ -0,0 +1 @@
|
||||
<textarea name="{$fieldname}" id="{$fieldname}" {$extras}>{$value}</textarea>
|
||||
12
templates/Froxlor/misc/form/table_row.tpl
Normal file
12
templates/Froxlor/misc/form/table_row.tpl
Normal file
@@ -0,0 +1,12 @@
|
||||
<tr>
|
||||
<td{$style} class="formlabeltd">
|
||||
<label for="{$fieldname}">{$label}{$mandatory}:
|
||||
<if $desc != ''>
|
||||
<br /><span style="font-size:85%;">{$desc}</span>
|
||||
</if>
|
||||
</label>
|
||||
</td>
|
||||
<td>
|
||||
{$data_field}
|
||||
</td>
|
||||
</tr>
|
||||
9
templates/Froxlor/misc/form/table_section.tpl
Normal file
9
templates/Froxlor/misc/form/table_section.tpl
Normal file
@@ -0,0 +1,9 @@
|
||||
<tr>
|
||||
<td>
|
||||
<img src="images/Froxlor/{$image}" alt="{$title}" /> <strong>{$title}</strong>
|
||||
</td>
|
||||
<td style="text-align:right;">
|
||||
<input type="reset" value="{$lng['panel']['reset']}" />
|
||||
<input type="submit" value="{$lng['panel']['save']}" />
|
||||
</td>
|
||||
</tr>
|
||||
6
templates/Froxlor/misc/htmlarrowcode.tpl
Normal file
6
templates/Froxlor/misc/htmlarrowcode.tpl
Normal file
@@ -0,0 +1,6 @@
|
||||
<a href="{$baseurl}&sortfield={$fieldname}&sortorder=desc">
|
||||
<img src="images/Froxlor/icons/up.png" alt="" />
|
||||
</a>
|
||||
<a href="{$baseurl}&sortfield={$fieldname}&sortorder=asc">
|
||||
<img src="images/Froxlor/icons/down.png" alt="" />
|
||||
</a>
|
||||
6
templates/Froxlor/misc/htmlsearchcode.tpl
Normal file
6
templates/Froxlor/misc/htmlsearchcode.tpl
Normal file
@@ -0,0 +1,6 @@
|
||||
{$lng['panel']['search']}:
|
||||
<select name="searchfield">
|
||||
{$fieldoptions}
|
||||
</select>
|
||||
<input type="text" name="searchtext" value="{$searchtext}" />
|
||||
<input type="submit" name="Go" value="Go" />
|
||||
7
templates/Froxlor/misc/htmlsortcode.tpl
Normal file
7
templates/Froxlor/misc/htmlsortcode.tpl
Normal file
@@ -0,0 +1,7 @@
|
||||
<select name="sortfield">
|
||||
{$fieldoptions}
|
||||
</select>
|
||||
{$breakorws}
|
||||
<select name="sortorder">
|
||||
{$orderoptions}
|
||||
</select> <input type="submit" name="Go" value="Go" />
|
||||
19
templates/Froxlor/misc/question_yesno.tpl
Normal file
19
templates/Froxlor/misc/question_yesno.tpl
Normal file
@@ -0,0 +1,19 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<form action="$yesfile" method="post">
|
||||
<div class="warningcontainer bradius">
|
||||
<div class="warningtitle">{$lng['question']['question']}</div>
|
||||
<div class="warning">
|
||||
$text
|
||||
<div style="text-align:right;margin-top:10px;">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
{$hiddenparams}
|
||||
<input type="submit" name="submitbutton" value="{$lng['panel']['yes']}" />
|
||||
<input type="button" class="nobutton" value="{$lng['panel']['no']}" onclick="history.back();" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
$footer
|
||||
20
templates/Froxlor/misc/question_yesno_checkbox.tpl
Normal file
20
templates/Froxlor/misc/question_yesno_checkbox.tpl
Normal file
@@ -0,0 +1,20 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<form action="$yesfile" method="post">
|
||||
<div class="warningcontainer bradius">
|
||||
<div class="warningtitle">{$lng['question']['question']}</div>
|
||||
<div class="warning">
|
||||
$text
|
||||
<div class="messagecheckbox">$checkbox</div>
|
||||
<div style="text-align:right;margin-top:10px;">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
{$hiddenparams}
|
||||
<input type="submit" name="submitbutton" value="{$lng['panel']['yes']}" />
|
||||
<input type="button" class="nobutton" value="{$lng['panel']['no']}" onclick="history.back();" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
$footer
|
||||
13
templates/Froxlor/misc/success.tpl
Normal file
13
templates/Froxlor/misc/success.tpl
Normal file
@@ -0,0 +1,13 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<div class="successcontainer bradius">
|
||||
<div class="successtitle">{$lng['success']['success']}</div>
|
||||
<div class="success">
|
||||
$success_message
|
||||
<if $redirect_url != ''>
|
||||
<br /><br /><a href="{$redirect_url}">{$lng['success']['clickheretocontinue']}</a>
|
||||
</if>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
$footer
|
||||
Reference in New Issue
Block a user