Skip to content

Commit

Permalink
Style index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
pomodori92 authored Feb 6, 2022
1 parent 61dc52e commit 2e10152
Showing 1 changed file with 26 additions and 24 deletions.
50 changes: 26 additions & 24 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,38 @@
<html>

<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="assets/css/index.css">
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">-->
<!-- <meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">-->
<title>Tekken Saver</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="assets/css/index.css">
<meta http-equiv="Content-Security-Policy"
content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">-->
<!-- <meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">-->
<title>Tekken Saver</title>
</head>

<body>
<div class="container">
<div class="container">

<h1>Welcome to Tekken Save Manager</h1>
<div>
This app is designed to prevent save loss due to corruption or game reinstallation <br>
I do not condone or approve save scumming, as this tool is only made for honest backup usage
</div>
<div class="buttons">
<button class="backup" onclick="backupSave()">⇩ Backup my new save </button>
<button class="import" onclick="importSave()">⇧ Import my old save</button>
<br>
<button class="backup" onclick="openBackupDir()">📁 Open Saved folder</button>
<button class="import" onclick="openTekkenDir()">📁 Open Tekken folder</button>
</div>
<h1>Welcome to Tekken Save Manager</h1>
<div>
This app is designed to prevent save loss due to corruption or game reinstallation.
<br>
I do not condone or approve save scumming, as this tool is only made for honest backup usage.
</div>
<div class="buttons">
<button class="backup" onclick="backupSave()">⇩ Backup my new save</button>
<button class="import" onclick="importSave()">⇧ Import my old save</button>
<br>
<button class="backup" onclick="openBackupDir()">📁 Open Saved folder</button>
<button class="import" onclick="openTekkenDir()">📁 Open Tekken folder</button>
</div>

<!-- The actual snackbar -->
<div id="snackbar">Some text some message..</div>
</div>
<!-- The actual snackbar -->
<div id="snackbar"></div>
</div>

<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>

</html>

0 comments on commit 2e10152

Please # to comment.