0
votes
0answers
137 views

Log in page using cherrypy and Javascript

I am trying to create Log in page using python Cherrypy and JavaScript...I cant link the two. Expected output = if username=='Bob' ans Password=='123' then display 'Welcome BOB' else then display ...
0
votes
1answer
304 views

How to automatically reload a web page when having a certin variable's value?

In the following python/html script,I want to refresh the web page automatically when the value of the variable "condition" equal to "1". So that the page show me the new text contains of the variable ...
0
votes
1answer
341 views

Call python script from html page

I have to make a html page with css and javascript that I have to enter a url in a form. With this url, I have to get some information from the html of the page with a Python 3.2 Script. I start ...
0
votes
1answer
163 views

how can we set session using python and html?

Currently I am working on a project which use python as server side script and we are using cherrypy as server, because I just learnt python by myself so I am facing a problem, when I am loging into a ...
2
votes
3answers
1k views

In python, how to check if a date is valid?

I am building a kind of calender web app I have set up the following form in HTML <form action='/event' method='post'> Year ("yyyy"): <input type='text' name='year' /> Month ("mm"): ...
0
votes
2answers
963 views

How to display all the images in a folder with HTML, python and cherrypy

I am currently working on a web-app/server in python and cherrypy. Right now, I have been trying to create a kind of gallery page. For every photo, i have implemented for following HTML code: ...
0
votes
3answers
219 views

Python webpage login error

I am trying to create create a kind of webserver withy python and cherrypy. I wish to put the htmls into separate files and embedd them into my python script. The code i used to do that is. ...
0
votes
1answer
374 views

With python and cherrypy, how do i read a txt file and display it to a page?

I have got a txt file in the format of: line_1 line_2 line_3 I am trying to read it into a list and displaying it on to a web page just as it looks inside the txt file; one line under another. Here ...
0
votes
1answer
206 views

How to read HTML parameters from CherryPy?

i have an html file, <html> <body> <form action="http://localhost/mypgm.py"> <input type="textbox" name="id" /> <input type="submit" /> </form> </body> ...
0
votes
2answers
306 views

cherrypy password form

I am trying to make a user registration and login for an application I'm working on using the form below. <html><form method="get" action="login"> Email Address: <input name="email" ...
0
votes
1answer
118 views

Unwanted / added to html file-path

I currently have a python/cherrypy application where the first page served-up is index.html, which contains the link <a href="designs.html">read more</a> When I click on this link ...
1
vote
0answers
289 views

Can python process complex field names in html forms?

In php we can call form fields like <input type="text" name="obj[obj_id][name]" value="val1" /> So in request we have multidimensional array. array('obj_id'=> array('name'=> 'val1')) ...