ulrich
2017-02-01 ff2dffd34f557edeeee4ff93028717e79f45441a
commit | author | age
c65695 1 <!DOCTYPE html>
U 2 <html>
3   <head>
4     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
3c1a75 5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
c65695 6     <title>Benutzer</title>
c3e010 7     <link rel="stylesheet" type="text/css" href="/jslib/bootstrap/css/bootstrap.min.css">
f8b1d6 8     <link rel="stylesheet" type="text/css" href="stile.css">
ff2dff 9     <script id="tpl-list" type="x-tmpl-mustache">
61cf48 10       {{#List}}
ff2dff 11       {{#List}}
U 12         <option value="{{ String }}">{{ String }}</option>'
13       {{/List}}
61cf48 14       {{/List}}
U 15     </script>
ff2dff 16     <!--
U 17     <script id="tpl-role-list" type="x-tmpl-mustache">
18       {{#List}}
19       {{#List}}
20         <option value="{{ String }}">{{ String }}</option>'
21       {{/List}}
22       {{/List}}
23     </script>
24     <script id="tpl-user-role-list" type="x-tmpl-mustache">
25       {{#List}}
26       {{#List}}
27         <option value="{{ String }}">{{ String }}</option>'
28       {{/List}}
29       {{/List}}
30     </script>
31     -->
c65695 32   </head>
U 33   <body>
3c1a75 34     <div id="inhalt">
880a9a 35       <div class="breadcrumb">
e9db3f 36         <a class="breadcrumb-item" href="/">WebBox</a>
57c58d 37         <a class="breadcrumb-item" href="/wbx/">Verwaltung</a>
2bdb0e 38         <span class="breadcrumb-item active">Benutzer</span>
880a9a 39       </div>
2bdb0e 40       <!-- <h1>Benutzer</h1> -->
3c1a75 41       <div id="user-list-form">
e9db3f 42         <select multiple class="form-control eingabe role-select" size="5" name="nutzerliste" id="nutzerliste"></select>
7f8a03 43         <div>
2bdb0e 44           <input type="button" name="nutzerLoeschen" id="nutzerLoeschen" value="L&ouml;schen" class="btn btn-danger">
U 45           <input type="button" name="nutzerNeu" id="nutzerNeu" value="Neu" class="btn btn-primary">            
7f8a03 46         </div>
3c1a75 47       </div>
U 48       <div id="user-form">
f8b1d6 49         <input class="form-control eingabe" type="text" size="20" maxlength="30" placeholder="Anmeldename" name="anmeldename" id="anmeldename">
U 50         <input class="form-control eingabe" type="password" size="20" maxlength="30" placeholder="Kennwort" name="kennwort" id="kennwort">
51         <input class="form-control eingabe" type="password" size="20" maxlength="30" placeholder="Wiederholung" name="kennwortw" id="kennwortw">
2bdb0e 52         <!--<button class="user-cancel-btn">Abbrechen</button>-->
f8b1d6 53         <button class="user-save-btn btn btn-primary eingabe">Speichern</button>
3c1a75 54       </div>
61cf32 55       <div id="user-role-form">
7f8a03 56         <h5>Rollen von <span id="userid"></span></h5>
e9db3f 57         <select multiple class="form-control eingabe role-select" size="5" name="nutzerrollen" id="nutzerrollen"></select>
7f8a03 58         <div>
2bdb0e 59           <input type="button" name="nutzerRolleEntziehen" id="nutzerRolleEntziehen" value="Entziehen" class="btn btn-danger">
7f8a03 60         </div>
61cf32 61       </div>
U 62       <div id="role-form">
c79c12 63         <h5>Rollen</h5>
e9db3f 64         <select multiple class="form-control eingabe role-select" size="5" name="rollen" id="rollen"></select>
7f8a03 65         <div>
2bdb0e 66           <input type="button" name="neueRolle" id="neueRolle" value="Neu" class="btn btn-primary">
U 67           <input type="button" name="rolleErteilen" id="rolleErteilen" value="Erteilen" class="btn btn-info">
7f8a03 68         </div>
61cf32 69       </div>
2bdb0e 70       <div id="nav">
U 71         <button id="nav-back-btn" class="btn btn-secondary">zur&uuml;ck</button>
72       </div>
c65695 73     </div>
c3e010 74     <script src="/jslib/jquery/jquery.min.js"></script>
61cf48 75     <script src="/jslib/mustache/mustache.min.js"></script>
5bf001 76     <script src="ui.js"></script>
U 77     <script type="text/javascript" charset="utf-8">
78       //var ui;
79       $(document).ready(function() {
80         um_init();
81       });
82     </script>
c65695 83   </body>
U 84 </html>