-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (71 loc) · 3.03 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
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Rogerio Orioli - Firebase Leads</title>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">
🗄 Firebase Leads
</a>
<ul class="nav navbar-nav navbar-right pull-right logout">
<li>
<a onclick="logoutFunction()" >Logout</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="overlay">
<div class="modal-login">
<div class="form-login">
<form action="">
<h2 class="text-center">Login</h2>
<p></p>
<div class="alert-login alert-danger" role="alert"></div>
<label for="">E-mail</label>
<input type="email" name="email" id="email-user" class="form-control">
<label for="">Password</label>
<input type="password" name="password" id="password" class="form-control" >
<input type="button" class="btn btn-success btn-lg btn-login" value="login" >
</form>
</div>
</div>
</div>
<section class="page-section" role="page">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="alert" role="alert">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<form action="">
<label for="">Name</label>
<input type="email" name="" id="name" class="form-control" placeholder="Name">
<label for="">E-mail</label>
<input type="email" name="" id="email" class="form-control" placeholder="yourbestemail@domain.com">
<label for="">Phone</label>
<input type="tel" name="phone" id="phone" class="form-control" placeholder="+55 11 999999999">
<input type="button" class="btn btn-success btn-lg send-form" value="Save" >
</form>
</div>
<div class="col-md-6">
</div>
</div>
</div>
</section>
<script src="https://www.gstatic.com/firebasejs/5.0.4/firebase.js"></script>
<script src="js/app.js"></script>
</body>
</html>