mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Copied template structure from coding challenge test
This commit is contained in:
20
application/templates/user/login.html.twig
Normal file
20
application/templates/user/login.html.twig
Normal file
@@ -0,0 +1,20 @@
|
||||
{% extends "frames/default.html.twig" %}
|
||||
{% block title %}
|
||||
login
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<h1>Login</h1>
|
||||
<form method='post'>
|
||||
<div class="form-group">
|
||||
<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="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>
|
||||
{% endblock %}
|
25
application/templates/user/register.html.twig
Normal file
25
application/templates/user/register.html.twig
Normal file
@@ -0,0 +1,25 @@
|
||||
{% extends "frames/default.html.twig" %}
|
||||
{% block title %}
|
||||
register
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<h1>Register</h1>
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<label for="email">Email address</label> <input type="email"
|
||||
class="form-control" id="email" aria-describedby="emailHelp"
|
||||
name="email" placeholder="Enter email">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="name">Username</label> <input type="email"
|
||||
class="form-control" id="name" aria-describedby="emailHelp"
|
||||
name="name" placeholder="Enter Username">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="password">Password</label> <input type="password"
|
||||
class="form-control" id="password" name="password"
|
||||
placeholder="Password">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Submit</button>
|
||||
</form>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user