Skip to content

Instantly share code, notes, and snippets.

@Kd-Here
Last active March 4, 2023 17:03
Show Gist options
  • Save Kd-Here/48e00ff2238b9fbac3062bd00e2b7fe0 to your computer and use it in GitHub Desktop.
Save Kd-Here/48e00ff2238b9fbac3062bd00e2b7fe0 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}{% block title %}Login Up{% endblock %}
{% block content %}
<form method="POST">
<h3 align="center" class="bg-primary text-dark">Login UP</h3>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" class="form-control" name="email" id="email" placeholder="enter email">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" name="password" id="password" placeholder="enter password">
</div>
<br>
<button class="btn btn-primary" type="submit">Login</button>
</form>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment