refactor: remove unused documentation generation script

This commit is contained in:
Prad Nukala
2024-12-08 17:55:36 -05:00
parent dae01698ef
commit 6bb2c2143e
5 changed files with 5 additions and 15 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import (
)
templ InitialView() {
@layout.Root("Welcome | Sonr.ID") {
@layout.Root("Sonr.ID") {
@layout.Container() {
@text.Header("Sonr.ID", "The decentralized identity layer for the web.")
<div class="pt-3 flex flex-col items-center justify-center h-full">
@@ -8,10 +8,9 @@ import (
)
templ ProfileFormView(turnstileSiteKey string) {
@layout.Root("Sonr.ID") {
@layout.Root("New Profile | Sonr.ID") {
@layout.Container() {
@text.Header("Create a Profile", "Enter some basic information about yourself.")
<br/>
@form.Form("/register/start", "POST", form.Submit("Continue"), "25", true) {
@form.NameInput()
<br/>
@@ -23,10 +22,9 @@ templ ProfileFormView(turnstileSiteKey string) {
}
templ LinkCredentialView(req LinkCredentialRequest) {
@layout.Root("Sonr.ID") {
@layout.Root("Register | Sonr.ID") {
@layout.Container() {
@text.Header("Link a PassKey", "This will be used to login to your vault.")
<br/>
@form.Form("/register/finish", "POST", form.PasskeyInput("passkey"), "65", false) {
@details.PropertyList() {
@details.Property("Address", req.Address, "wallet")
@@ -40,7 +38,7 @@ templ LinkCredentialView(req LinkCredentialRequest) {
}
templ LoadingVaultView() {
@layout.Root("Sonr.ID") {
@layout.Root("Loading... | Sonr.ID") {
@layout.Container() {
@text.Header("Loading Vault", "This will be used to login to your vault.")
}