-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ejs
62 lines (54 loc) · 2.35 KB
/
index.ejs
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
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Multiroom Chat</title>
<!-- bootstrap - link cdn -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- estilo -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row vertical-offset-80">
<div class="col-md-4 col-md-offset-4">
<div class="panel panel-default">
<div class="panel-heading">
<div class="row-fluid user-row">
<img src="img/multiroom_chat_2.png" class="img-responsive" alt="Multiroom Chat"/>
</div>
</div>
<div class="panel-body">
<form accept-charset="UTF-8" role="form" class="form-signin" action="/chat" method="post">
<fieldset>
<label class="panel-login">
<div class="login_result"></div>
</label>
<input class="form-control" placeholder="Nome ou apelido" id="apelido" name="apelido" type="text">
<br></br>
<input class="btn btn-lg btn-success btn-block" type="submit" id="entrar" value="Entrar »">
</fieldset>
</form>
</div>
<div>
<% if(validacao.length > 0) {%>
<div class="row">
<div class="col-md-12">
<div class="alert alert-danger">
<strong>Atenção!</strong>
<ul>
<% for(var i = 0; i < validacao.length; i++) { %>
<li><%=validacao[i].msg%></li>
<% } %>
</ul>
</div>
</div>
</div>
<% } %>
</div>
</div>
</div>
</div>
</div>
</body>
</html>