Skip to content

Commit 53da584

Browse files
add boiler plate code
0 parents  commit 53da584

36 files changed

+37107
-0
lines changed

.DS_Store

12 KB
Binary file not shown.

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
app/.DS_Store
3+
static/.DS_Store
4+
static/data/.DS_Store
5+
static/img/.DS_Store
6+
static/js/.DS_Store
7+
static/styles/.DS_Store
8+
templates/.DS_Store

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# clubSignUp
2+
3+
## A web app for students at NBTHS to learn more about and sign up for clubs!

app/__init__.py

Whitespace-only changes.
153 Bytes
Binary file not shown.
493 Bytes
Binary file not shown.

app/getNames.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import pandas as pd
2+
from flask import render_template
3+
4+
def names_function(name):
5+
try:
6+
message = f"Hello, your name is {name}"
7+
return render_template('namesOutput.html', message=message)
8+
except Exception as e:
9+
return render_template('error.html', e=e)

0 commit comments

Comments
 (0)