${h.stylesheet_link_tag('style')} ${h.start_form(h.url_for(action='handle_post'), method='post')}
${_('Debian Developer Portfolio')}
${h.text_field('name', value=request.params.get('name', None))}

${h.text_field('email', value=request.params.get('email', None))}

${h.text_field('username', value=request.params.get('username', None))}

${_('HTML')} ${h.radio_button('mode', 'html', checked=(request.params.get('mode', 'html') == 'html'))} ${_('JSON')} ${h.radio_button('mode', 'json', checked=(request.params.get('mode', 'html') == 'json'))}
${h.submit(value=_('Build DD Portfolio URLs'))}
${h.end_form()}