HTML5 Forms by faruken · Pull Request #98 · webpy/webpy

Conversation

@faruken

Some HTML5 forms such as email, url, number, range, color, search, telephone and datalist.

@aaronsw

Looks good -- I just have a couple tweaks in the comments. Can you make and update?

@cclauss

This PR has conflicts. Please rebase against current master or close.

@iredmail

Should be replaced by #440.

gjdv

label = net.websafe(arg[1])
else:
label = net.websafe(arg)
x += '<option%s value="%s">' % (label_p, label)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggest to close the option tag:
x += '<option%s value="%s" />' % (label_p, label)

iredmail added a commit that referenced this pull request

Sep 22, 2019
…`Range`, `Color`, `Search`, `Telephone` and `Datalist`.

Fixes #98
Fixes #497

Labels