Advertisement
sriyanto

route

Oct 12th, 2022 (edited)
710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. @app.route('/')
  2. def index():
  3.     if 'loggedin' in session:
  4.         return render_template('index.html')
  5.     flash('Harap Login dulu','danger')
  6.     return redirect(url_for('login'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement