-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
50 lines (50 loc) · 3.14 KB
/
test.html
File metadata and controls
50 lines (50 loc) · 3.14 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
<html>
</head>
<title>EmployeeManager</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="CSS/style1.css">
</head>
<body>
<!--<div class="container">
<h1 class="text-primary text-uppercase text-center "> Employee Data</h1>
<div class="d-flex justify-content-end">
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#myModal">Add New </button>
<button type="button" class="btn btn-warning" style="margin-left: 30px;" >Logout</a> </button>
</div>
<h2 class="text-danger"> All Records</h2>
<div id="records_contant">
</div>
<div class="modal" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">OTP Verification</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>-->
<form class="modal-body" onsubmit="event.preventDefault();add();">
<div class="form-group">
<label>Mobile No</label>
<input type="text" name="" id="mobile" class="form-control" placeholder="+91**********">
</div>
<div id="recaptcha-container"></div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="otp" >Send OTP</button>
<input type="reset" class="btn btn-danger" />
</div>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.12.0/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.13.2/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-database.js"></script>
<script src="js/employee.js"></script>
<script src="js/form.js"></script>
<script src="js/phoneAuth.js"></script>
</body>
</html>