You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
4.9 KiB
106 lines
4.9 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% block metatags %}
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<title>{% block metatitle %}{% endblock metatitle %} | Registration</title>
|
|
{% endblock metatags %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset("/bundles/adminlte/adminlte.css") }}">
|
|
<link rel="stylesheet" href="{{ asset('css/bootstrap-datepicker.css')}}">
|
|
<link rel="stylesheet" href="{{ asset('fonts/mercury.css')}}">
|
|
<link rel="stylesheet" href="{{ asset('css/drupal-style.css')}}">
|
|
<link rel="stylesheet" href="/bundles/sonatacore/vendor/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css"/>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.7.5/css/bootstrap-select.min.css">
|
|
|
|
|
|
<style>
|
|
fieldset.scheduler-border {
|
|
border: solid 1px #DDD !important;
|
|
padding: 0 10px 10px 10px;
|
|
border-bottom: none;
|
|
}
|
|
|
|
legend.scheduler-border {
|
|
width: auto !important;
|
|
border: none;
|
|
font-size: 14px;
|
|
}
|
|
.login-box,
|
|
.register-box {
|
|
width:360px;
|
|
margin:4% auto;
|
|
}
|
|
</style>
|
|
{% endblock stylesheets %}
|
|
{% block javascripts %}
|
|
<script type="text/javascript" src="{{ asset('js/jquery.js')}}"></script>
|
|
<script type="text/javascript" src="/bundles/sonatacore/vendor/moment/min/moment-with-locales.min.js"></script>
|
|
<script type="text/javascript" src="{{ asset('bootstrap/js/bootstrap.min.js')}}"></script>
|
|
<script type="text/javascript" src="/bundles/sonatacore/vendor/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js"></script>
|
|
|
|
<script type="text/javascript" src="{{ asset('js/bootstrap-datepicker.js')}}"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.7.5/js/bootstrap-select.min.js"></script>
|
|
|
|
|
|
{% endblock javascripts %}
|
|
</head>
|
|
<body class="login-page">
|
|
|
|
<div class="login-box" style="width:50%">
|
|
<div class="login-logo">
|
|
<a href="{{ acdr_drupal_url }}">
|
|
<img src="{{asset('/images/theswitchers.png')}}" width="200px"/>
|
|
</a>
|
|
</div>
|
|
<div class="login-box-body">
|
|
<div class="login-box-msg">
|
|
<h3 class="login-head orange">
|
|
{% block title %}
|
|
{% endblock title %}
|
|
</h3>
|
|
{#
|
|
{% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
|
|
{{ 'layout.logged_in_as'|trans({'%username%': app.user.username}, 'FOSUserBundle') }} |
|
|
<a class="btn btn-primary" href="{{ path('fos_user_security_logout') }}">
|
|
{{ 'layout.logout'|trans({}, 'FOSUserBundle') }}
|
|
</a>
|
|
{% else %}
|
|
<a class="btn btn-primary" href="{{ path('fos_user_security_login') }}">{{ 'layout.login'|trans({}, 'FOSUserBundle') }}</a>
|
|
{% endif %}
|
|
#}
|
|
</div>
|
|
{% if app.request.hasPreviousSession %}
|
|
{% for type, messages in app.session.flashbag.all() %}
|
|
{% for message in messages %}
|
|
<div class="flash-{{ type }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% block fos_user_content %}
|
|
{% endblock fos_user_content %}
|
|
</div>
|
|
</div>
|
|
<footer class="footer main-footer container" role="contentinfo">
|
|
<div class="region region-footer">
|
|
<section id="block-acdrfooter" class="block block-block-content block-block-contentf0830e07-b57f-4376-b034-a90974953cca clearfix">
|
|
<div class="field field--name-body field--type-text-with-summary field--label-hidden field--item"><div class="container">
|
|
<div class="row">
|
|
<div>
|
|
<a href="#">
|
|
<img alt="" src="{{ asset("images/logos.png") }}" width="80%">
|
|
</a>
|
|
</div>
|
|
<p>©SCP/RAC. All Rights Reserved</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|