-
Notifications
You must be signed in to change notification settings - Fork 0
/
resetpassword.html
executable file
·87 lines (81 loc) · 2.43 KB
/
resetpassword.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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/changePassword.js"></script>
<script type="text/javascript" src="js/signin.js"></script>
<script type="text/javascript" src="js/reformatter.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>Find Username</h1>
<form>
<fieldset>
<div>
E-mail:
<span style = "color:red"> * </span>
</br>
<input class="inputs" id="email" type="string" placeholder = "username" size = "20" > @
<input class="inputs" id="domain" type="string" placeholder = "domain.com" size = "20" >
</br></br>
<button class = "myButton" type="button" onclick="findUsername()">Submit</button>
</div>
</fieldset>
</form>
<h1>Reset Password</h1>
<form>
<fieldset>
<div>
Username:
<span style = "color:red"> * </span>
</br>
<input class="inputs" id="username" type="string" >
</br>
</br>
E-mail:
<span style = "color:red"> * </span>
</br>
<input class="inputs" id="email2" type="string" placeholder = "username" size = "20" > @
<input class="inputs" id="domain2" type="string" placeholder = "domain.com" size = "20" >
<!--
Username:</br>
<input id="username" type="string"></br>
Old Password:</br>
<input id="oldpassword" type="password"></br>
New Password:</br>
<input id="newpassword" type="password"></br>
Retype New Password:</br>
<input id="retypedpassword" type="password"></br></br>
-->
</br></br>
<button class = "myButton" type="button" onclick="changePassword()">Submit</button>
</div>
</fieldset>
</form>
<!--
<button onclick = "file://localhost/Users/Atapour/Documents/CSE110/Home.html';"
id = "myButton"
class = <"float-left submit-button">
-->
</div></span>
</body>
</html>