Spaces:
Running
Build a React.js frontend for a blockchain-based certificate verification system with two main portals: University Portal and Employer Portal (use React Router for navigation).
Browse filesUniversity Portal features:
1. Login page (username, password) with link to registration.
2. Registration page: University name, wallet address, public key input, email verification flow.
3. Dashboard with sidebar for navigation (Issue Certificate, View All Certificates, Revoke Certificate).
4. Issue Certificate: Form for certificate details, upload signed PDF, QR code generation, "Send to Student" button opens Gmail compose with filled email.
5. View All Certificates: Table/list of issued certificates (search/filter, clickable for details).
6. Revoke Certificate: Form for certificate ID, show details, revoke button.
Employer Portal features:
1. Verification page: Input for certificate ID or scan QR code.
2. Result page: Certificate details, signature verification result, status (Valid/Revoked/Not Found).
Use Material-UI or Chakra UI for clean styling (optional), Axios for backend/footer API calls, and qrcode.react for QR code.
Create sample React components and router structure for all required pages and flows.
Make the website visually aesthetic with a lot of animations and the name of the website is TrustChain
- App.jsx +150 -0
- index.html +36 -18
- style.css +40 -19
|
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```javascript
|
| 2 |
+
import React from 'react';
|
| 3 |
+
import ReactDOM from 'react-dom';
|
| 4 |
+
import { BrowserRouter as Router, Route, Switch, Link, Redirect } from 'react-router-dom';
|
| 5 |
+
import { motion } from 'framer-motion';
|
| 6 |
+
import {
|
| 7 |
+
ChakraProvider,
|
| 8 |
+
Box,
|
| 9 |
+
Flex,
|
| 10 |
+
Heading,
|
| 11 |
+
Text,
|
| 12 |
+
Button,
|
| 13 |
+
Input,
|
| 14 |
+
FormControl,
|
| 15 |
+
FormLabel,
|
| 16 |
+
Textarea,
|
| 17 |
+
Select,
|
| 18 |
+
Table,
|
| 19 |
+
Thead,
|
| 20 |
+
Tbody,
|
| 21 |
+
Tr,
|
| 22 |
+
Th,
|
| 23 |
+
Td,
|
| 24 |
+
Image,
|
| 25 |
+
useToast
|
| 26 |
+
} from '@chakra-ui/react';
|
| 27 |
+
import QRCode from 'qrcode.react';
|
| 28 |
+
import axios from 'axios';
|
| 29 |
+
|
| 30 |
+
// Animation variants
|
| 31 |
+
const pageVariants = {
|
| 32 |
+
initial: { opacity: 0, x: -100 },
|
| 33 |
+
in: { opacity: 1, x: 0 },
|
| 34 |
+
out: { opacity: 0, x: 100 }
|
| 35 |
+
};
|
| 36 |
+
|
| 37 |
+
const pageTransition = {
|
| 38 |
+
type: 'tween',
|
| 39 |
+
ease: 'anticipate',
|
| 40 |
+
duration: 0.5
|
| 41 |
+
};
|
| 42 |
+
|
| 43 |
+
// Home Component
|
| 44 |
+
const Home = () => {
|
| 45 |
+
return (
|
| 46 |
+
<motion.div
|
| 47 |
+
initial="initial"
|
| 48 |
+
animate="in"
|
| 49 |
+
exit="out"
|
| 50 |
+
variants={pageVariants}
|
| 51 |
+
transition={pageTransition}
|
| 52 |
+
style={{ textAlign: 'center', padding: '2rem' }}
|
| 53 |
+
>
|
| 54 |
+
<Heading as="h1" size="2xl" mb={6} color="teal.600">
|
| 55 |
+
Welcome to TrustChain
|
| 56 |
+
</Heading>
|
| 57 |
+
<Text fontSize="xl" mb={10}>
|
| 58 |
+
Blockchain-based Certificate Verification System
|
| 59 |
+
</Text>
|
| 60 |
+
<Flex justify="center" gap={8}>
|
| 61 |
+
<Button as={Link} to="/university/login" colorScheme="teal" size="lg">
|
| 62 |
+
University Portal
|
| 63 |
+
</Button>
|
| 64 |
+
<Button as={Link} to="/employer/verify" colorScheme="blue" size="lg">
|
| 65 |
+
Employer Portal
|
| 66 |
+
</Button>
|
| 67 |
+
</Flex>
|
| 68 |
+
</motion.div>
|
| 69 |
+
);
|
| 70 |
+
};
|
| 71 |
+
|
| 72 |
+
// University Login Component
|
| 73 |
+
const UniversityLogin = () => {
|
| 74 |
+
const [credentials, setCredentials] = React.useState({ username: '', password: '' });
|
| 75 |
+
|
| 76 |
+
const handleChange = (e) => {
|
| 77 |
+
const { name, value } = e.target;
|
| 78 |
+
setCredentials(prev => ({ ...prev, [name]: value }));
|
| 79 |
+
};
|
| 80 |
+
|
| 81 |
+
const handleSubmit = (e) => {
|
| 82 |
+
e.preventDefault();
|
| 83 |
+
// Authentication logic here
|
| 84 |
+
};
|
| 85 |
+
|
| 86 |
+
return (
|
| 87 |
+
<motion.div
|
| 88 |
+
initial="initial"
|
| 89 |
+
animate="in"
|
| 90 |
+
exit="out"
|
| 91 |
+
variants={pageVariants}
|
| 92 |
+
transition={pageTransition}
|
| 93 |
+
style={{ maxWidth: '500px', margin: '0 auto', padding: '2rem' }}
|
| 94 |
+
>
|
| 95 |
+
<Heading as="h2" size="xl" mb={6} textAlign="center">
|
| 96 |
+
University Login
|
| 97 |
+
</Heading>
|
| 98 |
+
<form onSubmit={handleSubmit}>
|
| 99 |
+
<FormControl mb={4}>
|
| 100 |
+
<FormLabel>Username</FormLabel>
|
| 101 |
+
<Input
|
| 102 |
+
type="text"
|
| 103 |
+
name="username"
|
| 104 |
+
value={credentials.username}
|
| 105 |
+
onChange={handleChange}
|
| 106 |
+
required
|
| 107 |
+
/>
|
| 108 |
+
</FormControl>
|
| 109 |
+
<FormControl mb={6}>
|
| 110 |
+
<FormLabel>Password</FormLabel>
|
| 111 |
+
<Input
|
| 112 |
+
type="password"
|
| 113 |
+
name="password"
|
| 114 |
+
value={credentials.password}
|
| 115 |
+
onChange={handleChange}
|
| 116 |
+
required
|
| 117 |
+
/>
|
| 118 |
+
</FormControl>
|
| 119 |
+
<Button type="submit" colorScheme="teal" width="full" mb={4}>
|
| 120 |
+
Login
|
| 121 |
+
</Button>
|
| 122 |
+
<Text textAlign="center">
|
| 123 |
+
Don't have an account? <Link to="/university/register" color="teal.500">Register</Link>
|
| 124 |
+
</Text>
|
| 125 |
+
</form>
|
| 126 |
+
</motion.div>
|
| 127 |
+
);
|
| 128 |
+
};
|
| 129 |
+
|
| 130 |
+
// ... (Other components would follow the same pattern)
|
| 131 |
+
|
| 132 |
+
// Main App Component
|
| 133 |
+
const App = () => {
|
| 134 |
+
return (
|
| 135 |
+
<ChakraProvider>
|
| 136 |
+
<Router>
|
| 137 |
+
<Box minH="100vh" bg="gray.50">
|
| 138 |
+
<Switch>
|
| 139 |
+
<Route exact path="/" component={Home} />
|
| 140 |
+
<Route path="/university/login" component={UniversityLogin} />
|
| 141 |
+
{/* Add other routes here */}
|
| 142 |
+
</Switch>
|
| 143 |
+
</Box>
|
| 144 |
+
</Router>
|
| 145 |
+
</ChakraProvider>
|
| 146 |
+
);
|
| 147 |
+
};
|
| 148 |
+
|
| 149 |
+
ReactDOM.render(<App />, document.getElementById('root'));
|
| 150 |
+
```
|
|
@@ -1,19 +1,37 @@
|
|
| 1 |
-
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
|
| 2 |
+
<!DOCTYPE html>
|
| 3 |
+
<html lang="en">
|
| 4 |
+
<head>
|
| 5 |
+
<meta charset="UTF-8">
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
+
<title>TrustChain - Blockchain Certificate Verification</title>
|
| 8 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 9 |
+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
| 10 |
+
<style>
|
| 11 |
+
body {
|
| 12 |
+
font-family: 'Poppins', sans-serif;
|
| 13 |
+
margin: 0;
|
| 14 |
+
padding: 0;
|
| 15 |
+
background-color: #f5f7fa;
|
| 16 |
+
color: #333;
|
| 17 |
+
}
|
| 18 |
+
#root {
|
| 19 |
+
min-height: 100vh;
|
| 20 |
+
display: flex;
|
| 21 |
+
flex-direction: column;
|
| 22 |
+
}
|
| 23 |
+
</style>
|
| 24 |
+
</head>
|
| 25 |
+
<body>
|
| 26 |
+
<div id="root"></div>
|
| 27 |
+
<script src="https://unpkg.com/react@17/umd/react.development.js"></script>
|
| 28 |
+
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script>
|
| 29 |
+
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
|
| 30 |
+
<script src="https://unpkg.com/react-router-dom@5/dist/react-router-dom.js"></script>
|
| 31 |
+
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
| 32 |
+
<script src="https://unpkg.com/qrcode.react@1.0.1/dist/index.js"></script>
|
| 33 |
+
<script src="https://unpkg.com/framer-motion@6/dist/framer-motion.js"></script>
|
| 34 |
+
<script src="https://unpkg.com/@chakra-ui/react@1.8.6/dist/chakra-ui-react.min.js"></script>
|
| 35 |
+
<script type="text/babel" src="App.jsx"></script>
|
| 36 |
+
</body>
|
| 37 |
</html>
|
|
@@ -1,28 +1,49 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
.card {
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```css
|
| 2 |
+
/* Global animations */
|
| 3 |
+
.fade-in {
|
| 4 |
+
animation: fadeIn 0.5s ease-in;
|
| 5 |
}
|
| 6 |
|
| 7 |
+
@keyframes fadeIn {
|
| 8 |
+
from { opacity: 0; transform: translateY(20px); }
|
| 9 |
+
to { opacity: 1; transform: translateY(0); }
|
| 10 |
}
|
| 11 |
|
| 12 |
+
/* Certificate card animation */
|
| 13 |
+
.certificate-card {
|
| 14 |
+
transition: all 0.3s ease;
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
+
.certificate-card:hover {
|
| 18 |
+
transform: translateY(-5px);
|
| 19 |
+
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
|
|
|
|
|
|
|
|
|
|
| 20 |
}
|
| 21 |
|
| 22 |
+
/* Button animations */
|
| 23 |
+
.btn-pulse {
|
| 24 |
+
animation: pulse 2s infinite;
|
| 25 |
}
|
| 26 |
+
|
| 27 |
+
@keyframes pulse {
|
| 28 |
+
0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
|
| 29 |
+
70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
|
| 30 |
+
100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
/* Loading spinner */
|
| 34 |
+
.spinner {
|
| 35 |
+
animation: spin 1s linear infinite;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
@keyframes spin {
|
| 39 |
+
from { transform: rotate(0deg); }
|
| 40 |
+
to { transform: rotate(360deg); }
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
/* Responsive layout adjustments */
|
| 44 |
+
@media (max-width: 768px) {
|
| 45 |
+
.responsive-flex {
|
| 46 |
+
flex-direction: column;
|
| 47 |
+
}
|
| 48 |
+
}
|
| 49 |
+
```
|