28 lines
618 B
Python
28 lines
618 B
Python
from velconnect.db import connectToDB
|
|
from flask import Blueprint, request, jsonify, render_template
|
|
from velconnect.logger import logger
|
|
import time
|
|
import simplejson as json
|
|
|
|
bp = Blueprint('website', __name__, template_folder='templates')
|
|
|
|
|
|
@bp.route('/', methods=['GET'])
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
|
|
@bp.route('/pair', methods=['GET'])
|
|
def pair():
|
|
return render_template('pair.html')
|
|
|
|
|
|
@bp.route('/success', methods=['GET'])
|
|
def success():
|
|
return render_template('success.html')
|
|
|
|
|
|
@bp.route('/failure', methods=['GET'])
|
|
def failure():
|
|
return render_template('failure.html')
|