You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
333 B
Mako

<%inherit file="base.mako"/>
<%def name="title()">
front page
</%def>
<%def name="heading()">
Upload Video
</%def>
${h.form(h.url_for(action='upload'), multipart=True)}
${h.file_field('file')}<br />
${h.text_field('title')}<br />
${h.submit('Upload')}
${h.end_form()}