Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/singhastra/gradhirex
A centralized platform interlinking campus placement data nationwide to empower policy makers and corporates with insights and access for tackling unemployability.
https://github.com/singhastra/gradhirex
Last synced: 5 days ago
JSON representation
A centralized platform interlinking campus placement data nationwide to empower policy makers and corporates with insights and access for tackling unemployability.
- Host: GitHub
- URL: https://github.com/singhastra/gradhirex
- Owner: SinghAstra
- Created: 2024-02-05T05:32:59.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T10:04:26.000Z (24 days ago)
- Last Synced: 2024-10-25T01:59:18.919Z (23 days ago)
- Language: TypeScript
- Homepage: https://gradhirex.vercel.app
- Size: 3.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
```mermaid
sequenceDiagram
participant U as User
participant F as Registration Form
participant B as Backend
participant E as Email Service
participant D as DatabaseU->>F: Submits registration form
F->>B: POST /api/register
B->>D: Store user with verified=false
B->>D: Generate verification token
B->>E: Send verification email
E->>U: Receive email with verification linkalt User clicks link within 24h
U->>B: GET /api/verify/:token
B->>D: Update user verified=true
B->>U: Redirect to login with success message
else Link expired
U->>B: GET /api/verify/:token
B->>U: Show expired token page
U->>B: Request new verification email
B->>E: Send new verification email
end
```