-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·57 lines (47 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="api/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="api/parse-1.3.5.js"></script>
<script type="text/javascript" src="js/signin.js"></script>
<script type="text/javascript" src="js/customertopmenu.js"></script>
<link rel="stylesheet" type="text/css" href="css/customertopmenu.css">
</head>
<body>
<div class="jbTitle">
<h1>Telegroup Company</h1>
</div>
<div class="jbMenu">
<p>
<span class = "menu-item">
<a href="home.html">Home</a>
<a href="addservice.html">Add Service</a>
<a href="myaccount.html">My Account</a>
<span id = "signbtn"> </span>
</span>
<a class = "submenu-item" href="signup.html">Are You New User?</a>
</p>
</div>
</br></br>
<div class="jbContent">
<span class = "body-item">
<h1>Telecom Log in </h1>
<div>
Username: <input id="username" class="inputs" placeholder="Username" type="String"></br>
Password: <input id="password" class="inputs" placeholder="Password" type="password"></br>
<button class="myButton" onclick = "signIn()">Log In</button> </br>
</br>
Not user yet?
<button class="myButton" onclick = "location.href = 'signup.html';" id = "myButton" class = <"float-left submit-button">
Sign up
</button>
</br>
</br>
Forgot your password?
<button class="myButton" onclick = "location.href = 'resetpassword.html';" >
Change Password
</button>
</div>
</div></span>
</body>
</html>