Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 Database

U->>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 link

alt 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
```