mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-03-14 19:35:19 +01:00
21 lines
840 B
Twig
21 lines
840 B
Twig
|
{% extends "frames/default.html.twig" %}
|
||
|
{% block title %}register{% endblock %}
|
||
|
{% block content %}
|
||
|
<h1>Register</h1>
|
||
|
<form>
|
||
|
<div class="form-group">
|
||
|
<label for="exampleInputEmail1">Email address</label>
|
||
|
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="exampleInputEmail1">Username</label>
|
||
|
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter Username">
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="exampleInputPassword1">Password</label>
|
||
|
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
|
||
|
</div>
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</form>
|
||
|
{% endblock %}
|