0% found this document useful (0 votes)
18 views1 page

Create Account Registration Form

Uploaded by

in.indushost
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views1 page

Create Account Registration Form

Uploaded by

in.indushost
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

{% extends "base.

html" %}

{% block title %}Register{% endblock %}

{% block content %}
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4">
<div class="card">
<div class="card-body p-4">
<h2 class="text-center mb-4">Create Account</h2>

{% if error %}
<div class="alert alert-danger">{{ error }}</div>
{% endif %}

<form method="post">
<div class="mb-3">
<label class="form-label">Username</label>
<input type="text" name="username" class="form-control"
required>
</div>

<div class="mb-3">
<label class="form-label">Password</label>
<input type="password" name="password" class="form-control"
required>
</div>

<button type="submit" class="btn btn-primary w-100">Create


Account</button>
</form>

<div class="text-center mt-3">


<a href="/login">Already have an account?</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}

You might also like