-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.63 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
<!--© 2021 Sean Murdock-->
<!--Modified by Kelly "Mac" Young, Copyright (C) 2022 FOSSPCM-->
<!DOCTYPE html>
<html lang="en">
<!--<div style="height: 90px">-->
<head>
<meta charset="UTF-8">
<title>STEDI Login Page</title>
<style>body {height: 90px;}</style>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href= "favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="page-header">
<p><img src="stedi-logo-4000px-x-4000px.png" alt="STEDI Logo" width="200" height="200" style="background-color:black;"/></p>
</div>
<div style="text-align:center">
<form name="loginForm" id="login" method="post" >
<p>
<label class="stepcount" for="phonenumber">Phone Number</label><br>
<input class="stepcount" type="text" id="phonenumber" name="phonenumber" size="15" onchange="setphonenumber()" required >
</p>
<p>
<input class="btn btn-lg btn-primary" id="sendtextbtn" type="button" onclick="sendtext()" value="Send Text">
</p>
<p>
<label class="stepcount" for="password">One-Time Password</label><br>
<input class="stepcount" type="password" id="password" name="pwd" size="25" onchange="setuserpassword()" required >
</p>
<p>
<input class="btn btn-lg btn-primary" id="loginbtn" type="button" onclick="userlogin()" value="Login">
</p>
<p>
<a class="stepcount" id="newusr" href="/createcustomer.html">Create account</a>
</p>
</form>
</div>
<script src="jquery-3.1.1.min.js"></script>
<script src="manageuser.js"></script>
</body>
</html>