forked from reTHINK-project/dev-service-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
115 lines (100 loc) · 4.31 KB
/
Copy pathindex2.html
File metadata and controls
115 lines (100 loc) · 4.31 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Demo of Hyperty and Protostubs</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.5/handlebars.min.js"></script>
</head>
<body>
<div class="progress"><div class="indeterminate"></div></div>
<div class="row container hide">
<div class="login-panel">
<div class="card blue-grey darken-1">
<div class="card-content not-logged white-text">
<span class="card-title">Login</span>
<p>So that an application can use Google's OAuth 2.0 authentication system for user login.
A test account was created to set the project in the Google Developers with
this credentials:</p>
<span class="row">
<span class="col s6">
<h5>1º Account</h5>
<p><b>username:</b> openidtest10@gmail.com</p>
<p><b>password:</b> testOpenID10</p>
</span>
<span class="col s6">
<h5>2º Account</h5>
<p><b>username:</b> openidtest20@gmail.com</p>
<p><b>password:</b> testOpenID20</p>
</span>
</span>
</div>
<div class="card-action">
</div>
</div>
</div>
<section class="chat-section hide">
</section>
</div>
<!-- Modal Structure -->
<div class="modal create-chat">
<div class="modal-content">
<div class="chat-name">
<h4>Name of Chat Group</h4>
<input class="input-name" placeholder="chat name" id="name" required aria-required="true" type="text">
</div>
<div class="participants">
<form class="participants-form">
<div class="row">
<div class="input-field col s8">
<i class="material-icons prefix">user</i>
<input class="input-email" name="email1" placeholder="Participant email" id="email1" required aria-required="true" type="text">
<label for="email1">Email</label>
</div>
</div>
<div class="row">
<div class="input-field col s8">
<i class="material-icons prefix">user</i>
<input class="input-email" name="email2" placeholder="Participant email" id="email2" type="text">
<label for="email2">Email</label>
</div>
</div>
</form>
</div>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat btn-cancel">Cancel</a>
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat btn-create">Create</a>
</div>
</div>
<!-- Modal Structure -->
<div class="modal join-chat">
<div class="modal-content">
<h4>Name of Chat Group</h4>
<input class="input-name" placeholder="chat name" id="name" required aria-required="true" type="text">
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat btn-cancel">Cancel</a>
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat btn-join">Join</a>
</div>
</div>
<!-- Modal Structure -->
<div class="modal add-participant">
<div class="modal-content">
<h4>Participant Email</h4>
<input class="input-name" placeholder="email" id="email" required aria-required="true" type="email">
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat btn-cancel">Cancel</a>
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat btn-add">Add</a>
</div>
</div>
<script src="../vendor/system.js"></script>
<script src="../config.js"></script>
<script>System.import("../example/demo2");</script>
</body>
</html>