Back
Sample code for the index.html file
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Duplicate file finder</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container">
<div id="header"><img src="logo.png" />
<div class="fix">
<span class="blue">Duplicate</span> file finder<br>
<span class="ver">Version <span class="blue">1.0.0</span></span>
</div>
</div>
<div id="menu">
<button id="addBtn" class="btn">📂 Add folder</button>
<button id="startBtn" class="btn" value="start"><span class="green">▶</span> Start search</button>
</div>
<div id="pathsHead" class="hide">
<span class="delDirHead"></span>
<span class="typeDirHead">Mode</span>
<span>Location</span>
</div>
<div id="paths"></div>
</div>
<script>require('./renderer.js')</script>
</body>
</html>
Back