Initial commit - Stage 1 working version
Saving current working state before proceeding to Stage 2. Includes: - Backend: Python-based QC validator with shapefile processing - Frontend: Drag-and-drop file upload interface - Sample files for testing - Documentation and revision history 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Verofy Shapefile Upload</title>
|
||||
<link rel="stylesheet" href="style.css?v=3">
|
||||
</head>
|
||||
<body>
|
||||
<div class="main-container">
|
||||
<div class="logo-section">
|
||||
<img src="logo.png" alt="Vero Dragndrop HLD Logo" class="logo">
|
||||
</div>
|
||||
<div class="upload-section">
|
||||
<div class="container">
|
||||
<h1>Verofy HLD Shapefile Upload</h1>
|
||||
<div id="drop-area">
|
||||
<p>Drag & Drop your ZIP file here</p>
|
||||
<input type="file" id="fileElem" accept=".zip" />
|
||||
</div>
|
||||
<div id="result"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="upload.js?v=3"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user