├── .gitignore ├── README.md ├── app.js ├── archive ├── Setup local database.docx ├── admin.ejs └── create_table.sql ├── bin └── www ├── package.json ├── public ├── css │ ├── Oswald-Light.ttf │ ├── bootstrap.min.css │ ├── images │ │ ├── arrow.svg │ │ ├── bars.svg │ │ └── close.svg │ ├── index.css │ ├── jquery-editable-select.min.css │ ├── neutra │ │ ├── NeutraText-LightAlt.woff │ │ ├── NeutraText-LightAlt.woff2 │ │ ├── demo.html │ │ └── stylesheet.css │ ├── slideshow.css │ └── style.css ├── favicon.ico ├── img │ ├── Archived │ │ ├── L00-0.jpg │ │ ├── L00.jpg │ │ ├── L01.jpg │ │ ├── L02.jpg │ │ ├── L03.jpg │ │ ├── L04.jpg │ │ ├── L06.jpg │ │ ├── L07.jpg │ │ ├── L08.jpg │ │ ├── L10.jpg │ │ ├── L11.jpg │ │ ├── L12.jpg │ │ ├── L15.jpg │ │ ├── L18.jpg │ │ ├── partners000.jpg │ │ ├── partners001.jpg │ │ ├── partners002.jpg │ │ └── sp_logo_gradient.png │ ├── L19.jpg │ ├── L21.jpg │ ├── L22.jpg │ ├── L30.jpg │ ├── L31.jpg │ ├── L32.jpg │ ├── L33.jpg │ ├── L34.jpg │ ├── Ldefault.jpg │ ├── Sponsor │ │ ├── epic.png │ │ ├── microsoft-no-text.png │ │ └── microsoft.png │ ├── brand.png │ ├── get-involved.png │ ├── icon-no-bg.jpg │ ├── icon.jpg │ ├── what-we-do.png │ └── who-we-are.png └── js │ ├── SearchScript.js │ ├── SortScript.js │ ├── account.js │ ├── bootstrap.min.js │ ├── enum.js │ ├── formatchecker.js │ ├── jquery-3.2.1.min.js │ ├── jquery-editable-select.min.js │ ├── jquery-ui.js │ ├── jquery.min.js │ ├── modal.js │ └── slideshow.js ├── routes ├── event │ ├── event.js │ └── event_api.js ├── index │ ├── contact_api.js │ ├── index.js │ └── user_api.js ├── project │ ├── project.js │ └── project_api.js ├── proposal │ ├── proposal.js │ └── proposal_api.js └── services │ ├── authorization_service.js │ └── email_service.js ├── server ├── dbconfig.js ├── event_db.js ├── project_db.js ├── proposal_db.js └── user_db.js └── views ├── about.ejs ├── contact.ejs ├── error.ejs ├── event ├── create.ejs ├── edit.ejs └── index.ejs ├── index.ejs ├── project ├── applicants.ejs ├── detail.ejs ├── edit.ejs └── index.ejs ├── proposal └── create.ejs ├── sponsor.ejs ├── template ├── footer.ejs ├── head.ejs └── nav.ejs └── user ├── email-confirmation.ejs ├── forget-password.ejs ├── login.ejs ├── profile.ejs ├── reset-password.ejs ├── signup.ejs ├── upload-complete.ejs └── user-admin.ejs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/app.js -------------------------------------------------------------------------------- /archive/Setup local database.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/archive/Setup local database.docx -------------------------------------------------------------------------------- /archive/admin.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/archive/admin.ejs -------------------------------------------------------------------------------- /archive/create_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/archive/create_table.sql -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/bin/www -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/package.json -------------------------------------------------------------------------------- /public/css/Oswald-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/Oswald-Light.ttf -------------------------------------------------------------------------------- /public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/images/arrow.svg -------------------------------------------------------------------------------- /public/css/images/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/images/bars.svg -------------------------------------------------------------------------------- /public/css/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/images/close.svg -------------------------------------------------------------------------------- /public/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/index.css -------------------------------------------------------------------------------- /public/css/jquery-editable-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/jquery-editable-select.min.css -------------------------------------------------------------------------------- /public/css/neutra/NeutraText-LightAlt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/neutra/NeutraText-LightAlt.woff -------------------------------------------------------------------------------- /public/css/neutra/NeutraText-LightAlt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/neutra/NeutraText-LightAlt.woff2 -------------------------------------------------------------------------------- /public/css/neutra/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/neutra/demo.html -------------------------------------------------------------------------------- /public/css/neutra/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/neutra/stylesheet.css -------------------------------------------------------------------------------- /public/css/slideshow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/slideshow.css -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/Archived/L00-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L00-0.jpg -------------------------------------------------------------------------------- /public/img/Archived/L00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L00.jpg -------------------------------------------------------------------------------- /public/img/Archived/L01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L01.jpg -------------------------------------------------------------------------------- /public/img/Archived/L02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L02.jpg -------------------------------------------------------------------------------- /public/img/Archived/L03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L03.jpg -------------------------------------------------------------------------------- /public/img/Archived/L04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L04.jpg -------------------------------------------------------------------------------- /public/img/Archived/L06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L06.jpg -------------------------------------------------------------------------------- /public/img/Archived/L07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L07.jpg -------------------------------------------------------------------------------- /public/img/Archived/L08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L08.jpg -------------------------------------------------------------------------------- /public/img/Archived/L10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L10.jpg -------------------------------------------------------------------------------- /public/img/Archived/L11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L11.jpg -------------------------------------------------------------------------------- /public/img/Archived/L12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L12.jpg -------------------------------------------------------------------------------- /public/img/Archived/L15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L15.jpg -------------------------------------------------------------------------------- /public/img/Archived/L18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/L18.jpg -------------------------------------------------------------------------------- /public/img/Archived/partners000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/partners000.jpg -------------------------------------------------------------------------------- /public/img/Archived/partners001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/partners001.jpg -------------------------------------------------------------------------------- /public/img/Archived/partners002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/partners002.jpg -------------------------------------------------------------------------------- /public/img/Archived/sp_logo_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Archived/sp_logo_gradient.png -------------------------------------------------------------------------------- /public/img/L19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/L19.jpg -------------------------------------------------------------------------------- /public/img/L21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/L21.jpg -------------------------------------------------------------------------------- /public/img/L22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/L22.jpg -------------------------------------------------------------------------------- /public/img/L30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/L30.jpg -------------------------------------------------------------------------------- /public/img/L31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/L31.jpg -------------------------------------------------------------------------------- /public/img/L32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/L32.jpg -------------------------------------------------------------------------------- /public/img/L33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/L33.jpg -------------------------------------------------------------------------------- /public/img/L34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/L34.jpg -------------------------------------------------------------------------------- /public/img/Ldefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Ldefault.jpg -------------------------------------------------------------------------------- /public/img/Sponsor/epic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Sponsor/epic.png -------------------------------------------------------------------------------- /public/img/Sponsor/microsoft-no-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Sponsor/microsoft-no-text.png -------------------------------------------------------------------------------- /public/img/Sponsor/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/Sponsor/microsoft.png -------------------------------------------------------------------------------- /public/img/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/brand.png -------------------------------------------------------------------------------- /public/img/get-involved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/get-involved.png -------------------------------------------------------------------------------- /public/img/icon-no-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/icon-no-bg.jpg -------------------------------------------------------------------------------- /public/img/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/icon.jpg -------------------------------------------------------------------------------- /public/img/what-we-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/what-we-do.png -------------------------------------------------------------------------------- /public/img/who-we-are.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/img/who-we-are.png -------------------------------------------------------------------------------- /public/js/SearchScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/SearchScript.js -------------------------------------------------------------------------------- /public/js/SortScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/SortScript.js -------------------------------------------------------------------------------- /public/js/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/account.js -------------------------------------------------------------------------------- /public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/js/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/enum.js -------------------------------------------------------------------------------- /public/js/formatchecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/formatchecker.js -------------------------------------------------------------------------------- /public/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /public/js/jquery-editable-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/jquery-editable-select.min.js -------------------------------------------------------------------------------- /public/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/jquery-ui.js -------------------------------------------------------------------------------- /public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/jquery.min.js -------------------------------------------------------------------------------- /public/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/modal.js -------------------------------------------------------------------------------- /public/js/slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/public/js/slideshow.js -------------------------------------------------------------------------------- /routes/event/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/event/event.js -------------------------------------------------------------------------------- /routes/event/event_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/event/event_api.js -------------------------------------------------------------------------------- /routes/index/contact_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/index/contact_api.js -------------------------------------------------------------------------------- /routes/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/index/index.js -------------------------------------------------------------------------------- /routes/index/user_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/index/user_api.js -------------------------------------------------------------------------------- /routes/project/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/project/project.js -------------------------------------------------------------------------------- /routes/project/project_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/project/project_api.js -------------------------------------------------------------------------------- /routes/proposal/proposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/proposal/proposal.js -------------------------------------------------------------------------------- /routes/proposal/proposal_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/proposal/proposal_api.js -------------------------------------------------------------------------------- /routes/services/authorization_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/services/authorization_service.js -------------------------------------------------------------------------------- /routes/services/email_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/routes/services/email_service.js -------------------------------------------------------------------------------- /server/dbconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/server/dbconfig.js -------------------------------------------------------------------------------- /server/event_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/server/event_db.js -------------------------------------------------------------------------------- /server/project_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/server/project_db.js -------------------------------------------------------------------------------- /server/proposal_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/server/proposal_db.js -------------------------------------------------------------------------------- /server/user_db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/server/user_db.js -------------------------------------------------------------------------------- /views/about.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/about.ejs -------------------------------------------------------------------------------- /views/contact.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/contact.ejs -------------------------------------------------------------------------------- /views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/error.ejs -------------------------------------------------------------------------------- /views/event/create.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/event/create.ejs -------------------------------------------------------------------------------- /views/event/edit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/event/edit.ejs -------------------------------------------------------------------------------- /views/event/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/event/index.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/project/applicants.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/project/applicants.ejs -------------------------------------------------------------------------------- /views/project/detail.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/project/detail.ejs -------------------------------------------------------------------------------- /views/project/edit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/project/edit.ejs -------------------------------------------------------------------------------- /views/project/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/project/index.ejs -------------------------------------------------------------------------------- /views/proposal/create.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/proposal/create.ejs -------------------------------------------------------------------------------- /views/sponsor.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/sponsor.ejs -------------------------------------------------------------------------------- /views/template/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/template/footer.ejs -------------------------------------------------------------------------------- /views/template/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/template/head.ejs -------------------------------------------------------------------------------- /views/template/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/template/nav.ejs -------------------------------------------------------------------------------- /views/user/email-confirmation.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/user/email-confirmation.ejs -------------------------------------------------------------------------------- /views/user/forget-password.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/user/forget-password.ejs -------------------------------------------------------------------------------- /views/user/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/user/login.ejs -------------------------------------------------------------------------------- /views/user/profile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/user/profile.ejs -------------------------------------------------------------------------------- /views/user/reset-password.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/user/reset-password.ejs -------------------------------------------------------------------------------- /views/user/signup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/user/signup.ejs -------------------------------------------------------------------------------- /views/user/upload-complete.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/user/upload-complete.ejs -------------------------------------------------------------------------------- /views/user/user-admin.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Good-UWMadison/Coding4Good-Site/HEAD/views/user/user-admin.ejs --------------------------------------------------------------------------------