36781-vm/core/templates/core/registration_success.html
Flatlogic Bot 02525633d4 harsh
2025-12-09 06:05:51 +00:00

12 lines
382 B
HTML

{% extends 'base.html' %}
{% block title %}Registration Successful{% endblock %}
{% block content %}
<div class="container text-center py-5">
<h1 class="display-4">Registration Successful!</h1>
<p class="lead">Thank you for registering. Your Digital ID has been created.</p>
<a href="{% url 'index' %}" class="btn btn-primary">Go to Homepage</a>
</div>
{% endblock %}