Best_Site/register.html

21 lines
871 B
HTML

{% extends "base.html" %}
{% block title %}Register{% endblock %}
{% block content %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<h2 class="header">Register</h2>
<form method="POST" >
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control" minlength="4" id="name" name="name">
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" name="email">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" id="password" name="password" minlength="8">
</div>
<button type="submit" action="{{ url_for('success') }}" class="btn btn-primary">Submit</button>
</form>
{% endblock %}