mirror of
				https://github.com/StefBuwalda/ProjectIOT.git
				synced 2025-10-30 19:29:57 +00:00 
			
		
		
		
	123123123
This commit is contained in:
		| @@ -1,13 +1,18 @@ | ||||
| from flask import Flask, render_template, session, redirect, url_for, session | ||||
| from flask_wtf import FlaskForm | ||||
| from wtforms import (StringField, BooleanField, | ||||
|                                   RadioField, SelectField, | ||||
|                                   TextAreaField, SubmitField) | ||||
| from wtforms import ( | ||||
|     StringField, | ||||
|     BooleanField, | ||||
|     RadioField, | ||||
|     SelectField, | ||||
|     TextAreaField, | ||||
|     SubmitField, | ||||
| ) | ||||
| from wtforms.validators import DataRequired | ||||
|  | ||||
| app = Flask(__name__) | ||||
|  | ||||
| app.config['SECRET_KEY'] = 'mijngeheimesleutel' | ||||
| app.config["SECRET_KEY"] = "mijngeheimesleutel" | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     app.run(debug=True) | ||||
| if __name__ == "__main__": | ||||
|     app.run(debug=True) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user