mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-05-06 14:41:02 -05:00
Auth class is back up and running to handle user authorizaion as well as session managment. Implemented basic usage on admin index class just for an example. Added a couple of new template files and css to start defining the overall style of pages and UI.
9 lines
394 B
Twig
9 lines
394 B
Twig
<form action="{{ path('back-index') }}" method="post" enctype="multipart/form-data">
|
|
<label>Handle</label><br/>
|
|
<input type="text" name="handle" value=""/>
|
|
<br/>
|
|
<label>Password</label><br/>
|
|
<input type="password" name="password" value=""/>
|
|
<input type="hidden" name="token" value="{{ csrf_token('upload') }}"/><br/>
|
|
<input type="submit" value="Knock Knock" name="submit_button"></form>
|