Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to make a nice login django form

{% extends 'main/header.html' %}

{% block content %}

    <div class="container">
        <form method="POST">
        {% csrf_token %}
        {{form.as_p}}
            <button style="background-color:#F4EB16; color:blue" class="btn btn-outline-info" type="submit">Login</button>
        </form>
        Don't have an account? <a href="/register" target="blank"><strong>register here</strong></a>!
    </div>
{% endblock %}
Comment

PREVIOUS NEXT
Code Example
Python :: adding number in set in python 
Python :: python string cut 
Python :: python string cut last character 
Python :: import stock data from yahoo finance 
Python :: live server python 
Python :: selenium webdriver options python 
Python :: python @property 
Python :: python save button 
Python :: Filter with List Comprehension 
Python :: python string find 
Python :: numpy.random.choice 
Python :: how split string in python by size 
Python :: static files in django 
Python :: drop na pandas 
Python :: check palindrome in python 
Python :: print input in python 
Python :: list of dicts 
Python :: openpyxl read cell value 
Python :: python get 2d array output as matrix 
Python :: encryption using python 
Python :: square a number in python 
Python :: variable in regex python 
Python :: ipaddress in python 
Python :: python dictionary sort by value then alphabetically 
Python :: polish notation python 
Python :: conda cassandra 
Python :: python how to play mp3 file 
Python :: SyntaxError: positional argument follows keyword argument 
Python :: python requests no certificate example 
Python :: form action in django 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =