Implemented login

This commit is contained in:
Kevin Frantz
2018-07-15 10:51:53 +02:00
parent 80be8e7361
commit a444f4805c
8 changed files with 94 additions and 18 deletions

View File

@@ -0,0 +1,5 @@
{% extends "frames/default.html.twig" %}
{% block content %}
<h1>Error!</h1>
<p>{{ message }}</p>
{% endblock %}

View File

@@ -2,14 +2,14 @@
{% block title %}login{% endblock %}
{% block content %}
<h1>Login</h1>
<form>
<form method='post'>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<label for="email">Email address</label>
<input type="email" name="email" class="form-control" id="email" aria-describedby="emailHelp" placeholder="Enter email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
<label for="password">Password</label>
<input type="password" name="password" class="form-control" id="password" placeholder="Password">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>