diff --git a/homepage.html b/homepage.html
new file mode 100644
index 0000000..a83e4f1
--- /dev/null
+++ b/homepage.html
@@ -0,0 +1,44 @@
+
+
+
+
+
+ Home Page
+
+
+
+
+
+
+
+
+
+
Modern solution for a more secure electronic voting
+
Learn more
+
+
+
+
+ Right Now
+
+
2024 United States Presidential Election
+
Final day at Tuesday, November 5, 2024
+
+
+
+
+
+
+
diff --git a/login.html b/login.html
new file mode 100644
index 0000000..2f1d91d
--- /dev/null
+++ b/login.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+ Login Page
+
+
+
+
+
+

+
+
+
+
+
+
+body {
+ font-family: Arial, sans-serif;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ background-color: #f3f3f3;
+}
+.container {
+ display: flex;
+ width: 80%;
+ max-width: 900px;
+ background: white;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ border-radius: 8px;
+ overflow: hidden;
+}
+.vote-section {
+ flex: 1;
+ background-color: #e6f7ff;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 20px;
+}
+.vote-section img {
+ width: 80%;
+ max-width: 300px;
+}
+.login-section {
+ flex: 1;
+ padding: 40px;
+}
+h2 {
+ text-align: center;
+ margin-bottom: 20px;
+ color: #333;
+}
+.input-group {
+ margin-bottom: 20px;
+}
+label {
+ display: block;
+ margin-bottom: 8px;
+ font-size: 14px;
+ color: #555;
+}
+input {
+ width: 100%;
+ padding: 10px;
+ font-size: 14px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ box-sizing: border-box;
+}
+.actions {
+ display: flex;
+ justify-content: flex-end;
+ margin-bottom: 20px;
+}
+.actions a {
+ color: #007bff;
+ text-decoration: none;
+ font-size: 14px;
+}
+.actions a:hover {
+ text-decoration: underline;
+}
+.btn {
+ width: 100%;
+ padding: 12px;
+ font-size: 16px;
+ color: white;
+ background-color: #007bff;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+}
+.btn:hover {
+ background-color: #0056b3;
+}
+.btn.secondary {
+ background-color: #6c757d;
+ margin-top: 10px;
+}
+.btn.secondary:hover {
+ background-color: #5a6268;
+}