#\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")%include("./partials/footer")CUSTOMER ENTRY FORM
GitHub: https://github.com/Sokhavuth/Rental-Bicycle-App
Heroku: https://khmerweb-rba.herokuapp.com/