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.
 
 
 
 

25 lines
652 B

{% extends "/Bases/StandardWebPage.html.twig" %}
{% block content %}
<div class="InnerContent">
<h1>Ceilidh Kit Login</h1>
<form
action="/FormHandling/Login.php"
method="POST"
>
<label for="Username">{{ "Username"|translate }}</label>
<br>
<input id="Username" name="Username" type="text">
<br>
<label for="Password">{{ "Password"|translate }}</label>
<br>
<input id="Password" name="Password" type="password">
<br>
<input type="submit">
</form>
</div>
{% endblock %}