-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (111 loc) · 3.38 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="manifest" href="manifest.json" />
<link rel="manifest" href="pwa/icons.json" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WebWEBFISHING</title>
<script type="text/javascript" src="webfishing_2_newver.js"></script>
<script type="module" src="index.js"></script>
<link rel="stylesheet" href="index.css" />
<link
href="https://fonts.cdnfonts.com/css/accidental-presidency"
rel="stylesheet"
/>
</head>
<body>
<div id="app">
<div id="stuff">
<h1>WebWEBFISHING</h1>
<input type="text" id="username" placeholder="Player" />
<label for="username">Username</label>
<input type="file" id="save" style="display: none" accept=".sav" />
<div id="settings" class="wfmenu">
<button
class="wfmenu_button"
onclick="document.getElementById('save').click()"
>
Import Save
</button>
<button class="wfmenu_button" id="downloadSave">Download Save</button>
<button class="wfmenu_button" id="resetSave">Reset Save</button>
<button
class="wfmenu_button"
onclick="document.getElementById('exe').click()"
>
Load Game
</button>
</div>
<div id="savesDownload" class="wfmenu" style="display: none">
<button
class="wfmenu_button"
onclick="document.getElementById('save').click()"
>
Download Slot 1
</button>
<button
class="wfmenu_button"
onclick="document.getElementById('save').click()"
>
Download Slot 2
</button>
<button
class="wfmenu_button"
onclick="document.getElementById('save').click()"
>
Download Slot 3
</button>
<button
class="wfmenu_button"
onclick="document.getElementById('exe').click()"
>
Download Slot 4
</button>
<button
class="wfmenu_button"
onclick="document.getElementById('exe').click()"
>
Back
</button>
</div>
<p>
<label for="exe"
>Upload WEBFISHING.exe from your game's install directory to load
the game</label
>
<br />
<br />
<input
type="file"
id="exe"
accept=".exe"
style="display: none"
disabled
/>
</p>
</div>
<div id="credits">
<span>AND REMEMBER, NO FAKE SHIT</span>
<br />
<span>
port + networking originally by <a href="https://notnite.com/">notnite</a>
</span>
<br />
<span>
updated by <a href="https://letsgoaway.neocities.org/">letsgoaway</a>
</span>
<br />
<span>
game created by <a href="https://lamedeveloper.itch.io/">lamedev</a>
</span>
<br />
<span>
<a href="https://store.steampowered.com/app/3146520/WEBFISHING/">BUY WEBFISHING ON STEAM TO PLAY</a>
</span>
</div>
</div>
<canvas id="canvas"></canvas>
</body>
</html>