lyadmin/templates/req.html

40 lines
1.1 KiB
HTML
Raw Normal View History

2020-11-22 01:24:41 -05:00
{%extends "layout.html"%}
{%block content%}
<p>
2020-11-22 02:42:56 -05:00
<form action="/req/signup" method="post">
2020-11-22 01:24:41 -05:00
<table>
{% for key, value in req_tab.items() %}
2020-11-22 02:42:56 -05:00
<tr><td>{{ key }}</td><td>
{%if value.w_type != "choice" %}
<{{ widg_fun(value) }}></{{value.w_type}}>
{%elif value.w_type == "choice" %}
<select id="id_{{value.w_name}}" name="{{value.w_name}}" required="">
{% for opt in value.w_opt %}
<option value="{{opt[0]}}">{{opt[1]}}</option>
{% endfor %}
</select>
{% endif %}
</td></tr>
2020-11-22 01:24:41 -05:00
{% endfor %}
2020-11-22 02:42:56 -05:00
<tr><td><input type="submit" value="sign up"></td></tr>
2020-11-22 01:24:41 -05:00
</table>
2020-11-22 02:42:56 -05:00
</form>
2020-11-22 01:24:41 -05:00
</p>
<p>
2020-11-22 02:42:56 -05:00
<p>
2020-11-22 01:24:41 -05:00
A requested feature is to have to allow users to have a unicode username since unicode allows for more interesting aesthics
</br>
If you enter a unicode display name, the system will try to display your unicode name when possbile. It will also be your default in terminal prompt, chat and your tilde path
</br>
the linux os only sees your true ascii username. so your ssh login, file permissions etc will user your true username
</br>
feedback on this feature welcome
</p>
{%endblock%}