forked from Saigenix/Study-planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
save.html
33 lines (25 loc) · 838 Bytes
/
save.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Saved plannes</title>
<link rel="stylesheet" href="style3.css" type="text/css" media="all" />
<script src="https://kit.fontawesome.com/a2fbac5db4.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="in">
<input type="text" name="searchbox" id="searchTxt" value="" placeholder="search here"/>
<i class="fas fa-search" id="sicon"></i>
</div>
<button class="button" onclick=go()>Go Back</button>
<div id="savedetails">
</div>
</body>
<script src="index2.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
const go = () => {
window.location.pathname = "Study-planner/Form.html";
}
</script>
</html>