49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<webview id="main-content" src="https://photos.onedrive.com"></webview>
|
|
|
|
<div id="config-panel">
|
|
<div class="panel-header">
|
|
<h1>Configuration</h1>
|
|
<button class="close-button" id="close-config">
|
|
<i class="fas fa-arrow-right"></i>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="panel-content">
|
|
<form id="config-form">
|
|
<div class="form-group">
|
|
<label for="dest-folder">Destination Folder for Photo Sync</label>
|
|
<div class="input-with-button">
|
|
<input type="text" id="dest-folder" name="dest-folder" readonly placeholder="Select a folder...">
|
|
<button type="button" id="select-folder">Browse</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="onedrive-source">OneDrive Source Path</label>
|
|
<input
|
|
type="text"
|
|
id="onedrive-source"
|
|
name="onedrive-source"
|
|
placeholder="Enter OneDrive path..."
|
|
>
|
|
</div>
|
|
|
|
<button type="submit" class="submit-button">Save Changes</button>
|
|
</form>
|
|
|
|
<button id="sync-button">Sync Now</button>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script src="renderer.js"></script>
|
|
</body>
|
|
</html>
|