-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (90 loc) · 4.49 KB
/
index.html
File metadata and controls
98 lines (90 loc) · 4.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VALOR - Verified Autonomous Ledger for Online Referendums</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.emoji {
font-size: 1.2em;
}
.section {
margin: 2em 0;
}
h1, h2 {
color: #333;
}
.feature-list {
list-style-type: none;
padding-left: 0;
}
.feature-list li {
margin: 10px 0;
}
</style>
</head>
<body>
<h1>VALOR Demo Project</h1>
<h2>VALOR – Verified Autonomous Ledger for Online Referendums</h2>
<div class="section">
<h2><span class="emoji">📌</span> Project Overview</h2>
<p>VALOR is a blockchain and cryptography-based online voting system designed to make elections secure, private, transparent, and scalable. It directly addresses challenges faced in current voting systems in India and worldwide — such as duplicate voting, tampering, lack of transparency, and dependence on centralized authorities.</p>
<p>The project leverages blockchain immutability, privacy-preserving cryptography, homomorphic encryption, and zero-knowledge proofs (ZKPs) to create a verifiable yet anonymous digital democracy platform.</p>
</div>
<div class="section">
<h2><span class="emoji">🛑</span> The Problem</h2>
<ul class="feature-list">
<li><strong>Tampering Risks</strong> → Ballots/EVMs can be manipulated.</li>
<li><strong>Lack of Transparency</strong> → Voters can't verify results independently.</li>
<li><strong>Duplicate / Fake Voting</strong> → Weak identity verification allows abuse.</li>
<li><strong>Centralized Trust</strong> → Current systems rely on one authority to be 100% honest.</li>
<li><strong>Scalability & Accessibility Issues</strong> → Difficult to serve India's 900+ million voters in a transparent digital system.</li>
</ul>
</div>
<div class="section">
<h2><span class="emoji">💡</span> The Solution: VALOR</h2>
<p>VALOR ensures "One Person, One Vote" without compromising voter privacy.</p>
<h3><span class="emoji">🔑</span> Core Features</h3>
<h4>Anonymous Voter Credentials</h4>
<ul>
<li>Voter registers using EPIC (Voter ID) + Date of Birth + Phone verification.</li>
<li>Details are encrypted and never stored permanently.</li>
<li>A unique anonymous credential is generated for each voter.</li>
</ul>
</div>
<div class="section">
<h2><span class="emoji">⚙️</span> How VALOR Works</h2>
<!-- Similar structure continues for other sections -->
</div>
<div class="section">
<h2><span class="emoji">🛠️</span> Tech Stack</h2>
<ul class="feature-list">
<li><strong>Frontend</strong> → React + TailwindCSS (Bilingual UI: English/Hindi)</li>
<li><strong>Backend</strong> → Node.js / Express</li>
<li><strong>Database</strong> → Encrypted temporary storage (PostgreSQL / MongoDB)</li>
<li><strong>Blockchain</strong> → Ethereum testnet / Polygon (with Blockscout for audit)</li>
</ul>
</div>
<div class="section">
<h2><span class="emoji">🚀</span> Roadmap</h2>
<ul class="feature-list">
<li>✅ Prototype with 1,000–2,000 simulated voters (IRIS National Science Fair)</li>
<li>⚙️ Optimization for scalability (sharding, rollups for blockchain efficiency)</li>
<li>🔐 Integration of multi-factor identity checks</li>
<li>🌍 Deployment on scalable blockchain infrastructure for national use</li>
</ul>
</div>
<div class="section">
<h2><span class="emoji">🎯</span> Impact</h2>
<p>VALOR proves that secure, anonymous, and transparent digital voting is possible. It introduces innovations like ZKP-based verifiability, blockchain immutability, and bilingual accessibility — making it uniquely suited for India's scale of democracy.</p>
<p>This project can pave the way for future electoral reforms, ensuring elections are tamper-proof, transparent, and accessible to all citizens.</p>
</div>
</body>
</html>