-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-log.html
More file actions
101 lines (90 loc) · 4.86 KB
/
user-log.html
File metadata and controls
101 lines (90 loc) · 4.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="navigation-bar" >
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="index.html">Nari Shakti</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbar"
aria-expanded="false"
aria-controls="navbar"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbar">
<ul class="navbar-nav ml-auto" >
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="admin.html">Admin</a>
</li>
</ul>
</div>
</nav>
</div>
</head>
<body>
<div class="container">
<h1 style="margin-top: 0.5em;">Login Via Mobile </h1>
<div class="row">
<div id="mob-auth">
<form>
<input class="form-control form-control-sm"type="text" style="width: 280px;" id="number" placeholder="+91********">
<div id="recaptcha-container"></div>
<button class="btn btn-primary" type="button" onclick="phoneAuth();">SendCode</button>
</form><br>
<h1>Enter Verification code</h1>
<form>
<input class="form-control form-control-sm" style="width: 280px;" type="text" id="verificationCode" placeholder="Enter verification code">
<button class="btn btn-primary" type="button" onclick="codeverify();">Verify code</button>
</form>
</div>
</div>
</div>
<div id="mob-auth-done">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12 track-status">
<div class="inStatus">
<button onclick="logout()" class="btn btn-primary" id="logout">Logout</button>
<h3>Track Application Status</h3>
<div class="flex-column ">
<div class="form-group required" style="width: 280px;height: 80px;">
<label for="postID" class="control-label">Enter Mobile Number</label>
<input type="number" id="postID" placeholder="Enter Register Mobile Number" class="form-control form-control-sm" autocomplete="off" maxlength="10" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength); " />
<input type="submit" value="Enter" class="btn btn-primary" id="submitBtn">
</div>
<div class="row">
<div id="statusdiv" class="col-md-6 col-sm-12 col-xs-12">
<hr />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-auth.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="form.js"></script>
<script src="app.js"></script>
<script src="mob-login.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>