WEBD-325-45/week-03/project/templates/admin/login.twig

18 lines
989 B
Twig

{% extends "index.twig" %}
{% block bodyNavigation %}{% endblock %}
{% block content %}
<div class="uk-height-1-1 uk-background-cover uk-overflow-hidden uk-flex"
style="background-color: #fff; background-image: url('https://source.unsplash.com/random/1920x800/?yachts'); min-height: 500px; height: 100%">
<div class="uk-width-1-2@m uk-text-center uk-margin-auto uk-margin-auto-vertical uk-overlay uk-overlay-default">
<h1>Login Here</h1>
<form action="{{ url() }}index.php?dashboard=access" method="post">
<input name="username" class="uk-input uk-width-1-2" type="text" placeholder="Username">
<input name="password" class="uk-input uk-width-1-2" type="password" placeholder="*************">
<input type="submit" class="uk-button uk-button-primary uk-width-1-2" value="Login"/>
<a class="uk-button uk-width-1-2" href="{{ url() }}?account=signup">Create Account</a>
</form>
</div>
</div>
{% endblock %}