Cloud Computing Course
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

24 righe
706 B

from flask import render_template,request
from app import app
from .form import Book
import os
import _thread
@app.route('/')
@app.route('/index')
def index():
return render_template('login.html',form=Book())
@app.route('/confirmed', methods=['get', 'post'])
def BookTest():
form = Book()
if request.method == 'POST':
if form.validate_on_submit():
username = form.username.data
password = form.password.data
email = form.email.data
area = form.area.data
cmd='python3 auto.py '+username+' '+password+' '+email+' '+area
_thread.start_new_thread(os.system,(cmd,))
return render_template('success.html')