Mind Juice

J U S T · A · S A F E T Y · N E T
  • DL
    • Introduction
    • Neural Network
  • Back-End
    • Flask
      • Flask Basics
      • Login & Logout
      • Broadcasting
      • Relationships
      • All App Files
      • The Memoirs Project
    • Django
      • Django Basics
      • Coding Entrepreneurs
    • Dev. Tech
      • Infrastructure
      • HTTP & REST
      • GitHub
    • Database
      • Relational Databases
    • Linux
      • Ubuntu
      • Command Line
  • Python
    • Setup Python
    • Python Basics
    • Python Collection
      • Lists
      • Dictionaries
      • Tuples
      • Sets
      • Game Practice
    • Object-Oriented Python
    • DB in Python
    • Better Python
    • Comprehension
    • Dates & Times
    • Regular Expressions
    • Type Hinting
    • Files I/O
    • Python Testing
  • JavaScript
    • JavaScript Basics
    • ES2015
    • jQuery
    • DOM Scripting
    • Callback Functions
    • Array Iteration
    • OOP
    • Regular Expressions
    • Pseudocode
    • Closures
    • Local Storage
    • AJAX & JSON
    • Async. Programming
    • Mobile Web Apps
    • React
  • Front-End
    • HTML
    • CSS & Sass
      • CSS
      • Flexbox
      • CSS Variables
      • CSS Grid
      • CSS Best Practices
      • CSS to Sass
      • Sass
    • Bootstrap 5
    • Chrome DevTools
    • Front End Optimizing
      • Gulp
      • FE Optimization Workflow
      • CHECKLIST
    • Web Accessibility
    • SEO & Digital Marketing
  • Design
    • Foundations
    • Branding
    • Typography
    • UX
      • Design Thinking
      • Wireframing
      • Dev. Collaboration
      • Feedback
    • Freelance
    • Multimedia

Category: Register, Login & Logout

  • Mind Juice
    • Register, Login & Logout

PROGRESS#1

PROGRESS#1

Aug 11 2016- POSTED BY projecth

[models.py] import datetime from flask_bcrypt import generate_password_hash from flask_login import UserMixin from peewee import * DATABASE = SqliteDatabase(‘social.db’) class User(UserMixin, […]

Read More
Comments Off on PROGRESS#1

Login / Logout

Aug 11 2016- POSTED BY projecth

Login Algorithm Create login form – from data if available. After submitting valid data, get requested user from the database. […]

Read More
Comments Off on Login / Logout

Signup View & Macros

Aug 07 2016- POSTED BY projecth

Registration View [app.py] from flask import Flask, g, render_template, redirect, url_for, flash from flask_login import LoginManager import forms import models […]

Read More
Comments Off on Signup View & Macros

Forms with Validators

Aug 07 2016- POSTED BY projecth

Flask-WTF Forms are not only about display (i.e. HTML forms), forms are about validation. We will be building a registration […]

Read More
Comments Off on Forms with Validators

DB Connection & Login Manager

Aug 07 2016- POSTED BY projecth

Part of setting up the database is handling connecting and disconnecting from our database responsibly. To do that, we use […]

Read More
Comments Off on DB Connection & Login Manager

@classmethod & Hashing

Aug 01 2016- POSTED BY projecth

bcrypt A famous super strong library that does Cryptographic Hashing using the Blowfish Cypher which is a salt (i.e. random […]

Read More
Comments Off on @classmethod & Hashing

User Model

Aug 01 2016- POSTED BY projecth

Building The Model First we’ll build the model that will handle the credential data of the registering users. [models.py] import […]

Read More
Comments Off on User Model
All rights reserved Mind Juice 2020.
Proudly powered by WordPress | Theme: Flatter by SpiceThemes