forked from Decentrala/taskmanager
- dodati folderi layouts, includes, pages - dodate base layout koji koriste ostale stranice - dodat header.html i footer.html i includes koji koriste ostale stranice - sav html refaktorisan tako da koristi base.html layout i header i footer iz includes
25 lines
765 B
HTML
25 lines
765 B
HTML
{% extends "layouts/base.html" %}
|
|
{% block content %}
|
|
<main class="container page page-register">
|
|
<div class="form-wrap">
|
|
<form action="/register" method="POST">
|
|
<div class="form-input">
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" id="username" required />
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="contact">Contact:</label>
|
|
<input type="text" name="contact" id="contact" required />
|
|
</div>
|
|
<div class="form-input">
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" placeholder="optional" id="password"/>
|
|
</div>
|
|
<div class="btn-wrap">
|
|
<button class="btn">Submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
{% endblock content %}
|