This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (61 loc) · 2.44 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sipgate Callme</title>
<link rel="stylesheet" href="./css/materialize.min.css">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div class="container">
<div class="row">
<div id="settings" class="col s12">
<div class="row">
<div class="input-field col s12">
<input id="registerSip" type="text">
<label for="registerSip" class="active">SIP-ID</label>
</div>
<div class="input-field col s12">
<input id="caller" type="tel">
<label for="caller" class="active">Deine Telefonnummer</label>
</div>
<div class="input-field col s12">
<input id="username" type="text">
<label for="username" class="active">Username</label>
</div>
<div class="input-field col s12">
<input id="password" type="password">
<label for="password" class="active">Passwort</label>
</div>
<div class="col s12">
<button id="save" class="btn waves-effect waves-light">Speichern</button>
<button class="btn waves-effect waves-light props">Abbrechen</button>
</div>
</div>
</div>
<div id="calling" class="col s12">
<div class="row">
<div class="col s12">
<div class="section">
<p id="callerNr"></p>
</div>
<div class="divider"></div>
</div>
<div class="input-field col s12">
<input id="callee" type="tel">
<label for="callee" class="active">Zielnummer</label>
</div>
<div class="col s12">
<button id="call" class="btn waves-effect waves-light">Callme</button>
<button class="btn waves-effect waves-light props">Einstellungen</button>
</div>
<div id="status" class="col s12"></div>
</div>
</div>
</div>
</div>
<script>window.$ = window.jQuery = require('./js/jquery.min.js');</script>
<script src="./js/script.js"></script>
</body>
</html>