blob: 332590b06a8d1d69a59d8a3fd4d269a4c125b16f (
plain)
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
|
<p>
<?= _('In diesem Schritt legen Sie die Benutzerdaten für ein '
. 'Haupt-Administrator-Konto (root) in Stud.IP fest.') ?>
<?= _('Bitte merken Sie sich die Zugangsdaten!') ?>
</p>
<h3><?= _('Konto für Root einrichten') ?></h3>
<div class="type-text required">
<label for="username" class="vertical"><?= _('Nutzername') ?></label>
<input required type="text" id="username" name="username" minlength="4"
value="<?= htmlReady(Request::get('username', $_SESSION['STUDIP_INSTALLATION']['root']['username'] ?? '')) ?>">
</div>
<div class="type-text required">
<label for="password" class="vertical"><?= _('Passwort') ?></label>
<input required type="password" id="password" name="password" minlength="8">
</div>
<div class="type-text required">
<label for="password_confirm" class="vertical"><?= _('Passwort bestätigen') ?></label>
<input required type="password" id="password_confirm" name="password_confirm" minlength="8">
</div>
<div class="type-text required">
<label for="first_name" class="vertical"><?= _('Vorname') ?></label>
<input required type="text" id="first_name" name="first_name"
value="<?= htmlReady(Request::get('first_name', $_SESSION['STUDIP_INSTALLATION']['root']['first_name'] ?? '')) ?>">
</div>
<div class="type-text required">
<label for="last_name" class="vertical"><?= _('Nachname') ?></label>
<input required type="text" id="last_name" name="last_name"
value="<?= htmlReady(Request::get('last_name', $_SESSION['STUDIP_INSTALLATION']['root']['last_name'] ?? '')) ?>">
</div>
<div class="type-text required">
<label for="email" class="vertical"><?= _('E-Mail-Adresse') ?></label>
<input required type="email" id="email" name="email" value="<?= htmlReady(Request::get('user', $_SESSION['STUDIP_INSTALLATION']['root']['email'] ?? '')) ?>">
</div>
<p style="margin-top: 1em;">
<?= _('Wenn Sie jetzt auf installieren klicken,') ?>
<ul>
<li><?= _('werden die notwendigen Datenbanktabellen erzeugt') ?></li>
<li><?= _('werden die ausgewählten Beispieldaten eingetragen') ?></li>
<li><?= _('wird die Grundkonfiguration für das System in der Datenbank gespeichert') ?></li>
<li><?= _('wird ein Root-Konto für Sie eingerichtet.') ?></li>
</ul>
</p>
|