userp 0.0.4

Userp is a user account system inspired by Next Auth, with OAuth, password and email support, a ready-made Axum router with Askama templates, and more on the way!
Documentation
use serde::{Deserialize, Serialize};
use uuid::Uuid;

#[derive(Debug, Serialize, Deserialize)]
pub struct IdForm {
    pub id: Uuid,
}

#[derive(Serialize, Deserialize)]
pub struct EmailPasswordNextForm {
    pub email: String,
    pub password: String,
    pub next: Option<String>,
}

#[derive(Debug, Serialize, Deserialize)]
pub struct EmailNextForm {
    pub email: String,
    pub next: Option<String>,
}

#[derive(Serialize, Deserialize)]
pub struct ProviderNextForm {
    pub provider: String,
    pub next: Option<String>,
}