Atulsinghbirla commited on
Commit
c82ac95
·
verified ·
1 Parent(s): 85e21e3

Upload base.html

Browse files
Files changed (1) hide show
  1. templates/base.html +21 -0
templates/base.html ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Flask Auth + Portfolio</title>
7
+ <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
8
+ </head>
9
+ <body>
10
+ {% with messages = get_flashed_messages(with_categories=true) %}
11
+ {% if messages %}
12
+ <ul>
13
+ {% for category, message in messages %}
14
+ <li class="{{ category }}">{{ message }}</li>
15
+ {% endfor %}
16
+ </ul>
17
+ {% endif %}
18
+ {% endwith %}
19
+ {% block content %}{% endblock %}
20
+ </body>
21
+ </html>