“Как создать страницу входа в Python” Ответ

Как сделать простой вход в Python

username = input(' enter your username: ')
if username == 'Put Your Username Here':#change this
   print("checking username")
   time.sleep(0.5)
   print("username is right") 
   password = input(' type your password: ')
   if password == 'Put Your Password Here':#change this
    time.sleep(0.5) 
   else:
    exit()
else:
 exit()    
DitoIsBes

Как сделать хорошую форму для входа в систему django

{% 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 %}
Lucky Lark

Как создать страницу входа в Python

while (loop == 'true'):
    username = input("Please enter your username: ")
    if (username == CorrectUsername):
    	password = input("Please enter your password: ")
        if (password == CorrectPassword):
            print("Logged in successfully as ") + username
            loop = 'false'
        else:
            print "Password incorrect!"
    else:
        print "Username incorrect!"
Tame Tarantula

Как создать страницу входа в Python

sum = 10
sum1 = 20
print(sum+sum1)
Delightful Dragonfly

Ответы похожие на “Как создать страницу входа в Python”

Вопросы похожие на “Как создать страницу входа в Python”

Больше похожих ответов на “Как создать страницу входа в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования