-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrechteverwaltung.html
118 lines (117 loc) · 3.96 KB
/
rechteverwaltung.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!--
* Copyright (C) 2013 UniCopa
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<title>CoPA - Rechteverwaltung</title>
<link rel="stylesheet" href="CSS/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="CSS/layout.css" type="text/css" media="screen" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/vnd.microsoft.icon"/>
<link rel="icon" href="images/favicon.ico" type="image/vnd.microsoft.icon"/>
<link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <!-- Not final Font-Family -->
</head>
<body>
<div id="kopfzeile">
<a href="index.html"><img src="images/logo.png"/></a>
<div id="statusleiste">
<div id="headline"> <h2>Rechteverwaltung</h2> </div>
<div id="user">
<a href="#"><img src="images/settings.png" id="menuebutton"/></a>
<div id="menueD"></div>
<ul id="menue">
<li>Email Benachrichtigung<input type="checkbox" id="mail" onclick="changenotification()"/></li>
<li><a href="#">Sprache</a></li>
<li><a href="help.html">Hilfe</a></li>
<li><a href="logout.jsp">Logout</a></li>
</ul>
</div>
</div>
</div>
<div id="funktionsleiste">
<ul>
<li>
<a href="index.html">Aktuelle Änderungen</a>
</li>
<li>
<a href="meineabos.html">Meine Abos</a>
</li>
<li>
<a href="suchen.html">Veranstaltung suchen</a>
</li>
<li id="kurseaendern" >
<a href="kurse_aendern.html">Kurse ändern</a>
</li>
<li id="rechteverwaltung" >
<a href="rechteverwaltung.html">Rechteverwaltung</a>
</li>
</ul>
</div>
<div id="inhalt">
<table id="rechte-aendern">
<div id="users">
</div>
<!--<tr>
<th></th>
<th>Events</th>
</tr>-->
</table>
<br>
</div>
<script src="JS/jquery.js"></script>
<script src="JS/pageInit.js"></script>
<script src="JS/isSubscribed.js"></script>
<script src="JS/rechteaendern/rechteverwaltung.js"></script>
<script src="JS/rechteaendern/updateright.js"></script>
<script src="JS/sendrequest.js"></script>
<script src="JS/mail.js"></script>
<script src="JS/labelinside.js"></script>
<script src="JS/subpageEvent.js"></script>
<script src="JS/menue.js"></script>
</body>
</html>
<!--section for the owners
<div id="owner">
<h4>Owner</h4><br>
<form action="#" method="post">
<span class="labelinside">
<label for="name">give right</label>
<input required type="text" name="give_right" />
</span>
<input type="submit" value="go" />
</form>
<br/>
<form action="#" method="post">
<span class="labelinside">
<label for="name">remove right</label>
<input required type="text" name="remove_right" />
</span>
<input type="submit" value="go" />
</form>
<br/>
<p>
<button type="button" onclick="own_deputies()">self-proclaimed Deputies</button>
</p>
<br>
<p>
<button type="button" onclick="deputies()">Deputies</button>
</p>
<br>
<p>
<button type="button" onclick="rightholders()">RightholdersDeputies</button>
</p>
<br>
</div>-->