#\controllers\customer.py
import config, re, json
from bottle import template, route, request, redirect
@route('/customer')
def displayCustomer():
return template('customer', data=config.kargs)
@route('/custform')
def getCustomerForm():
return template('custform', data=config.kargs)
%include("./partials/header.tpl")
CUSTOMER ENTRY FORM
%include("./partials/footer")
GitHub: https://github.com/Sokhavuth/Rental-Bicycle-App
Heroku: https://khmerweb-rba.herokuapp.com/













