From a3b38a5c327ba45515c75efccbd18e813c27aad0 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 4 Jun 2021 00:06:28 +0530 Subject: added user sign in --- app/templates/auth/signin.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app/templates/auth/signin.html (limited to 'app/templates/auth/signin.html') diff --git a/app/templates/auth/signin.html b/app/templates/auth/signin.html new file mode 100644 index 0000000..eecff34 --- /dev/null +++ b/app/templates/auth/signin.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block title %}Sign Up{% endblock %} + +{% block head %} + {{ super() }} +{% endblock %} + +{% block content %} +
+

User Login

+

Sign in to your account.

+
+ {% include 'flash_messages.html' %} + {{ form.csrf_token }} + {% from "_formhelpers.html" import render_field %} +
+ {{ render_field(form.email) }} +
+
+ {{ render_field(form.password) }} +
+
+ +
+
+
+{% endblock %} \ No newline at end of file -- cgit v1.2.3