commit | author | age
|
58aa3b
|
1 |
<!DOCTYPE html> |
U |
2 |
<html> |
|
3 |
<head> |
|
4 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
6 |
<title>Benutzer</title> |
|
7 |
<link rel="stylesheet" type="text/css" href="/jslib/bootstrap/css/bootstrap.min.css"> |
|
8 |
<link rel="stylesheet" type="text/css" href="stile.css"> |
|
9 |
<script id="tpl-list" type="x-tmpl-mustache"> |
|
10 |
{{#List}} |
|
11 |
{{#List}} |
|
12 |
<option value="{{ String }}">{{ String }}</option>' |
|
13 |
{{/List}} |
|
14 |
{{/List}} |
|
15 |
</script> |
|
16 |
</head> |
|
17 |
<body> |
|
18 |
<div id="inhalt"> |
|
19 |
<ul class="nav"> |
|
20 |
<li class="nav-item dropdown"> |
|
21 |
<a id="userMenu" class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a> |
|
22 |
<div class="dropdown-menu"> |
|
23 |
<a class="dropdown-item" href="/data/dok/wbx/Bedienung.htmi">Hilfe</a> |
|
24 |
<a class="dropdown-item" href="/">Zur Hauptseite der WebBox wechseln</a> |
|
25 |
<div class="dropdown-divider"></div> |
|
26 |
<a class="dropdown-item" href="/wbx/mng">Apps verwalten</a> |
|
27 |
<a class="dropdown-item" href="/um/ui">Benutzer verwalten</a> |
|
28 |
<a class="dropdown-item" href="/file-cms/ui">Dateien verwalten</a> |
|
29 |
<a class="dropdown-item" href="/wbx-dbcon/ui">Datenbanken verwalten</a> |
|
30 |
<div class="dropdown-divider"></div> |
|
31 |
<a id="profil" class="dropdown-item disabled" href="/um/profil">Profil</a> |
|
32 |
<a id="logout" class="dropdown-item" href="#">Abmelden</a> |
|
33 |
</div> |
|
34 |
</li> |
|
35 |
</ul> |
|
36 |
<!-- <h1>Benutzer</h1> --> |
|
37 |
<div class="bg-warning p-3" id="meldung-box"> |
|
38 |
<button type="button" class="close" aria-label="Close" id="mldg-x"> |
|
39 |
<span aria-hidden="true">×</span> |
|
40 |
</button> |
|
41 |
<div class="meldung"></div> |
|
42 |
</div> |
|
43 |
<div id="user-form"> |
|
44 |
<label class="pl-3" id="anmeldename">id</label> |
|
45 |
<!-- <input class="form-control eingabe" type="text" size="20" maxlength="30" placeholder="Anmeldename" name="anmeldename" id="anmeldename"> --> |
|
46 |
<input class="form-control eingabe" type="password" size="20" maxlength="30" placeholder="Kennwort" name="kennwort" id="kennwort"> |
|
47 |
<input class="form-control eingabe" type="password" size="20" maxlength="30" placeholder="Neues Kennwort" name="kennwortneu" id="kennwortNeu"> |
|
48 |
<input class="form-control eingabe" type="password" size="20" maxlength="30" placeholder="Wiederholung" name="kennwortw" id="kennwortw"> |
|
49 |
<input class="form-control eingabe" type="text" size="20" maxlength="250" placeholder="Vorname" name="vorname" id="vorname"> |
|
50 |
<input class="form-control eingabe" type="text" size="20" maxlength="250" placeholder="Name" name="nachname" id="nachname"> |
|
51 |
<!--<button class="user-cancel-btn">Abbrechen</button>--> |
|
52 |
<button class="user-save-btn btn btn-primary eingabe">Speichern</button> |
|
53 |
</div> |
|
54 |
|
|
55 |
<!-- |
|
56 |
<div id="nav"> |
|
57 |
<button id="nav-back-btn" class="btn btn-secondary">zurück</button> |
|
58 |
</div> |
|
59 |
--> |
|
60 |
</div> |
|
61 |
<script src="/jslib/jquery/jquery.min.js"></script> |
|
62 |
<script src="/jslib/bootstrap/js/bootstrap.min.js"></script> |
|
63 |
<script src="/jslib/mustache/mustache.min.js"></script> |
|
64 |
<script src="ui.js"></script> |
|
65 |
<script type="text/javascript" charset="utf-8"> |
|
66 |
//var ui; |
|
67 |
$(document).ready(function() { |
|
68 |
um_prf_init(); |
|
69 |
}); |
|
70 |
</script> |
|
71 |
</body> |
|
72 |
</html> |