blob: 9c2b3fe43188c547bdbeaee61f43764c805254bc (
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
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
|
<?php ?>
<div class="section server-info-settings">
<h2><?php p($l->t('Server info')); ?></h2>
<p class="settings-hint">
<?php p($l->t('Enter common info about your Nextcloud instance here. These info are visible to all users.')) ?>
</p>
<form>
<div class="margin-bottom">
<label class="label" for="location"><?php p($l->t('Server location')); ?></label>
<input
class="form-input"
id="location"
name="location"
type="text"
maxlength="100"
placeholder="<?php p($l->t('country')); ?>">
</div>
<div>
<label class="label" for="provider"><?php p($l->t('Service provider')); ?></label>
<input
class="form-input"
id="provider"
name="provider"
type="text"
maxlength="100"
placeholder="<?php p($l->t('company or person')); ?>">
</div>
<div>
<label class="label" for="providerWebsite"><?php p($l->t('Website')); ?></label>
<input
class="form-input"
id="providerWebsite"
name="providerWebsite"
type="url"
maxlength="200"
placeholder="<?php p($l->t('link to website')); ?>">
</div>
<div class="margin-bottom">
<label class="label" for="providerPrivacyLink"><?php p($l->t('Link to privacy policy')); ?></label>
<input
class="form-input"
id="providerPrivacyLink"
name="providerPrivacyLink"
type="url"
maxlength="200"
placeholder="<?php p($l->t('link to privacy policy')); ?>">
</div>
<div class="margin-bottom">
<label class="label" for="admin"><?php p($l->t('Admin contact')); ?></label>
<select class="form-input" name="admin">
<option>Michael Weimann</option>
<option>Max Mustermann</option>
<option>Peter Petrowski</option>
</select>
</div>
<div class="form-actions">
<button id="test123" class="button">
<span class="default-label">
<?php p($l->t('Save')); ?>
</span>
<span class="working-label">
<span class="icon-loading-small-dark"></span>
<?php p($l->t('saving…')); ?>
</span>
<span class="success-label">
<span class="icon-checkmark-white"></span>
<?php p($l->t('saved')); ?>
</span>
<span class="error-label">
<span class="icon-error-white"></span>
<?php p($l->t('error saving settings')); ?>
</span>
</button>
<script>
const button = $('#test123');
button.on('click', (event) => {
event.stopImmediatePropagation();
event.preventDefault();
button.prop('disabled', true);
button.addClass('button-working');
setTimeout(() => {
button.removeClass('button-working');
button.addClass('button-success');
}, 1500);
});
</script>
</div>
</form>
</div>
|