-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored to put code in sub dir so things like coding standards etc…
…. can be included Signed-off-by: Daniel Chatfield <[email protected]>
- Loading branch information
1 parent
482e57d
commit d3d47c2
Showing
151 changed files
with
53 additions
and
56 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
106 changes: 53 additions & 53 deletions
106
skins/defaultcustom/templates/loginpage.html → ...ns/defaultcustom/templates/loginpage.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
<!DOCTYPE html> | ||
|
||
<html lang="en"> | ||
<head> | ||
{{ watermark }} | ||
<meta charset="utf-8" /> | ||
<title>{{ environment.blog_name }} | Login</title> | ||
<link rel="stylesheet" type="text/css" href="{{ environment.static_url }}/styles.css" /> | ||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | ||
{{ skin_actions.head }} | ||
{% if settings.enable_custom_css == "on" %} | ||
<style type="text/css"> | ||
{{ settings.custom_css | safe }} | ||
</style> | ||
{% endif %} | ||
</head> | ||
<body class="{{ body_class }}" > | ||
<div class="notice logout-message"> | ||
<div class="inner"> | ||
{{ plugin_translation.logout_message }} | ||
</div> | ||
</div> | ||
<div class="notice incorrect-credentials error"> | ||
<div class="inner"> | ||
{{ plugin_translation.incorrect_credentials }} | ||
</div> | ||
</div> | ||
{{ skin_actions.notices }} | ||
<div class="logo" style="background-image:url({{ settings.logo }})"></div> | ||
<div class="login-form"> | ||
{% if settings.enable_message == "on" %} | ||
<div class="login-message">{{ settings.message | urlize }}</div> | ||
{% endif %} | ||
<form method="post" action=""> | ||
{% for input in plugin_vars.form_inputs %} | ||
{% if input.label %} | ||
<label for="{{ input.id }}">{{ input.label }} | ||
<br> | ||
{% endif %} | ||
|
||
<input id="{{ input.id }}" class="{{ input.class }}" type="{{ input.type }}" name="{{ input.name }}" value="{{ input.value }}" /> | ||
|
||
{% if input.label %} | ||
</label> | ||
{% endif %} | ||
{% endfor %} | ||
</form> | ||
</div> | ||
<script type="text/javascript"> | ||
jQuery("#password").focus(); | ||
</script> | ||
</body> | ||
</html> | ||
<!DOCTYPE html> | ||
|
||
<html lang="en"> | ||
<head> | ||
{{ watermark }} | ||
<meta charset="utf-8" /> | ||
<title>{{ environment.blog_name }} | Login</title> | ||
<link rel="stylesheet" type="text/css" href="{{ environment.static_url }}/styles.css" /> | ||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | ||
{{ skin_actions.head }} | ||
{% if settings.enable_custom_css == "on" %} | ||
<style type="text/css"> | ||
{{ settings.custom_css | safe }} | ||
</style> | ||
{% endif %} | ||
</head> | ||
<body class="{{ body_class }}" > | ||
<div class="notice logout-message"> | ||
<div class="inner"> | ||
{{ plugin_translation.logout_message }} | ||
</div> | ||
</div> | ||
<div class="notice incorrect-credentials error"> | ||
<div class="inner"> | ||
{{ plugin_translation.incorrect_credentials }} | ||
</div> | ||
</div> | ||
{{ skin_actions.notices }} | ||
<div class="logo" style="background-image:url({{ settings.logo }})"></div> | ||
<div class="login-form"> | ||
{% if settings.enable_message == "on" %} | ||
<div class="login-message">{{ settings.message | urlize }}</div> | ||
{% endif %} | ||
<form method="post" action=""> | ||
{% for input in plugin_vars.form_inputs %} | ||
{% if input.label %} | ||
<label for="{{ input.id }}">{{ input.label }} | ||
<br> | ||
{% endif %} | ||
|
||
<input id="{{ input.id }}" class="{{ input.class }}" type="{{ input.type }}" name="{{ input.name }}" value="{{ input.value }}" /> | ||
|
||
{% if input.label %} | ||
</label> | ||
{% endif %} | ||
{% endfor %} | ||
</form> | ||
</div> | ||
<script type="text/javascript"> | ||
jQuery("#password").focus(); | ||
</script> | ||
</body> | ||
</html> |
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.