freenet-router |
Subversion Repositories: |
Compare with Previous - Blame - Download
{% extends "includes/window.twig" %}
{% block window_caption%}
PĹihlĂĄĹĄenĂ
{% endblock %}
{% block window_content%}
<script>
$(document).ready(function(){
$(function() {
$("input[type=submit]")
.button();
$('.window').width('500px');
});
});
</script>
<div style="width:100%;">
<form method="post" action="{{formAction}}">
<div style="width:400px;margin:auto;display:table; border-spacing: 4px;">
<div style="display:table-row">
<div style="padding-left:4px;background-color: #F2F2F2;border-radius: 4px;display:table-cell">
<label for="username">UĹživatelskĂŠ jmĂŠno</label>
</div>
<div style="display:table-cell">
<input type="text" name="username" id="username" />
</div>
</div>
<div style="display:table-row">
<div style="padding-left:4px;background-color: #F2F2F2;border-radius: 4px;display:table-cell">
<label for="username">Heslo</label>
</div>
<div style="display:table-cell">
<input type="password" name="password" id="password" />
</div>
</div>
<div style="display:table-row;text-align: right">
<div style="background-repeat: no-repeat; background-size: contain; background-image: url('/Application/Resources/images/cahc/logoSrovnavac.png'); display:table-cell">
</div>
<div style="vertical-align: bottom; height:50px;display:table-cell">
<input class="button" type="submit" title="PĹihlĂĄsit" value="PĹihlĂĄsit" name="loginSubmit" />
</div>
</div>
</div>
{# <div style="width:400px;">
<ul style="width:100%;list-style-position: inside">
<li>PĹihlaĹĄte se svĂ˝m zamÄstnaneckĂ˝m nebo partnerskĂ˝m jmĂŠnem</li>
<li>Pro technickou podporu volejte 840 444 111 nebo piĹĄte na email podpora@srovnavac24.cz</li>
</ul>
</div>
#}
</form>
</div>
{% endblock %}