-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a85ac9
commit 5c650a6
Showing
7 changed files
with
72 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import os | ||
|
||
class Config(object): | ||
SECRET_KEY = os.environ.get('SECRET_KEY') or 'you-will-never-guess-this' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from flask import Flask | ||
from config import Config | ||
|
||
app = Flask(__name__) | ||
|
||
app.config.from_object(Config) | ||
from myapp import routes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from flask_wtf import FlaskForm | ||
from wtforms import StringField, PasswordField, BooleanField, SubmitField | ||
from wtforms.validators import DataRequired,Length | ||
|
||
class LoginForm(FlaskForm): | ||
username = StringField('Username', validators=[DataRequired(),Length(min=4)]) #first arguments is a label, the second is a LIST of validators (don't forget () ) | ||
password = PasswordField('Password', validators=[DataRequired()]) | ||
remember_me = BooleanField('Remember Me') | ||
submit = SubmitField('Sign In') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<div class="row justify-content-md-center"> | ||
<h1>Hello, {{ user.username }}</h1> | ||
</div> | ||
{% for post in posts %} | ||
<div><p>{{ post.author.username }} says: <strong>{{ post.body }} </strong></p></div> | ||
<div><p>{{ post.author.username }} says: <strong>{{ post.body }}</strong></p></div> | ||
{% endfor %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<h1 class="row justify-content-md-center"> Sign in </h1> | ||
<div class="row justify-content-md-center"> | ||
<form action="" method="post"> <!-- action:indicates what URL browser should use when submiting the information of the form . action and method are called attributes --> | ||
{{ form.hidden_tag() }} | ||
<p> | ||
{{ form.username.label }} <br> | ||
{{ form.username(size=32) }}<br> | ||
{% for error in form.username.errors %} | ||
<span style="color:red;"> {{ error }}</span> | ||
{% endfor %} | ||
</p> | ||
<p> | ||
{{ form.password.label }} <br> | ||
{{ form.password(size=32) }}<br> | ||
{% for error in form.password.errors %} | ||
<span style="color:red;"> {{ error }}</span> | ||
{% endfor %} | ||
</p> | ||
<p> {{ form.remember_me() }} {{ form.remember_me.label }} </p> | ||
<p> {{ form.submit() }} </p> | ||
|
||
</form> | ||
</div> | ||
{% endblock %} |