# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

# Home page
GET     /                           controllers.Application.index

# Signup
GET     /signup                     controllers.SignUp.form
GET     /users/fakeuser             controllers.SignUp.editForm
POST    /signup                     controllers.SignUp.submit

# Contact
GET     /contacts                   controllers.Contacts.form
GET     /contacts/fakecontact       controllers.Contacts.editForm
POST    /contacts                   controllers.Contacts.submit

# Map static resources from the /public folder to the /assets URL path
GET     /assets/*file               controllers.Assets.at(path="/public", file)
