-
Notifications
You must be signed in to change notification settings - Fork 3
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
cd3ddca
commit 8cfc78a
Showing
4 changed files
with
11 additions
and
3 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 |
---|---|---|
@@ -1,2 +1,10 @@ | ||
# launchcode-attendance | ||
A web application for an attendance management system | ||
|
||
Dependencies needed: | ||
* conda install flask | ||
* conda install -c conda-forge flask-sqlalchemy | ||
* conda install pymysql | ||
* pip install pandas | ||
* pip install xlsxwriter | ||
* pip install xlrd |
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 |
---|---|---|
|
@@ -36,7 +36,7 @@ def require_login(): | |
@app.route('/') | ||
def index(): | ||
#session['email'] = "[email protected]" >>> Test for session without using teacher account | ||
return render_template('index.html') | ||
return render_template('index.html', title = 'LaunchCode Attendance', bg_image = bg_image()) | ||
|
||
# Logout | ||
@app.route('/logout') | ||
|
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