Skip to content

Instantly share code, notes, and snippets.

View SaketMunda's full-sized avatar
🎯
Focusing

Saket Munda SaketMunda

🎯
Focusing
View GitHub Profile
@SaketMunda
SaketMunda / Signup.razor
Last active July 20, 2022 13:16
Multi-Step Signup Form with Progress Bar in Blazor Server using AntBlazor UI
/* Prerequisite : Import AntDesign in _Imports.server file */
@using AntDesign
<Row>
<GridCol Span="12" Class="content-section">
<Steps Direction="vertical" Current="current">
@foreach (var item in steps)
{
<Step Title="@item.Title" Description="@item.Description" />