content_mailcnf_userlist_new.html 2.04 KB
<table border="0">
<form action="/mailcnf/user" method="POST">
    <tr>
        <th>Name</th>
        <th>Wert</th>
    </tr>
    <tr>
    <td>Group ID:</td>
        <td>
             {% if uid== 0 %}
                <input type="text" size="70" name="group_id" value="{{ ugroup }}">
            {% else %}
                <input type="text" size="70" name="group_id" value="{{ ugroup }}" readonly>
            {% end %}
        </td>
    </tr>
     
    <tr>
    <td>Quota:</td>
        <td>
             {% if uid== 0 %}
                <input type="text" size="70" name="quota" value="0">
            {% else %}
                <input type="text" size="70" name="quota" value="0" readonly>
            {% end %}
        </td>
    </tr>
    <tr>
        
        <td>Email: </td>
        <td><input type="text" size="40" name="email" value="">@
        
        
        <select name="domaintld" size="1">
{% for entry in combolist %}
      
          <option>{{ escape(entry) }}</option>
      {% end %}
        </select>
        <!--<input type="text" size="30" name="domaintld" value="">-->
        
        
        
        
        </tr>
        <tr>
            <td>Sent Mail:</td>
            <td><input type="checkbox" size="40" name="sent_mail"  value="1"  checked></td>
        </tr>
        <tr>
            <td>Aktiv: </td>
            <td><input type="checkbox" size="40" name="active"  value="1" checked></td>
         </tr>
        <tr>
            <td>Neues Passwort:</td>
            <td><input type="password" size="70" name="pw1" value=""></td>
        </tr>
        <tr> 
        '<td>Neues Passwort 2:</td>
            <td><input type="password" size="70" name="pw2" value=""></td>
        </tr>
            <input type="hidden" size="70" name="fnc" value="submitnewuser">
            <input type="hidden" value="userlist" size="70" name="mainfnc" id="" class="'">
            <input type="hidden" value="mailcnf" size="70" name="module" id="" class="'">
            <button type="submit" class="btn btn-info  btn-block btn-xs">Sende</button>
    <tr> 
</form>