Fixed typos in SignUp and OAuth setup views

This commit is contained in:
2024-05-02 21:13:20 +07:00
parent bb2540a5c4
commit 005924e8fe
2 changed files with 3 additions and 3 deletions

View File

@ -11,8 +11,8 @@ templ form(err types.Message, title string) {
<div class="mx-auto w-full max-w-md space-y-8"> <div class="mx-auto w-full max-w-md space-y-8">
<header class="text-center"> <header class="text-center">
<div class="space-y-2"> <div class="space-y-2">
<h1 class="text-3xl font-bold text-white">Sign Up</h1> <h1 class="text-3xl font-bold text-white">Set Up Your Account</h1>
<p class="text-gray-500 dark:text-gray-400">Enter your email below to login to your account</p> <p class="text-gray-500 dark:text-gray-400">Enter your information to create a new account</p>
switch err.Code { switch err.Code {
case 0: case 0:
<div class="p-4 mb-4 text-sm text-red-800 rounded-lg bg-red-50 dark:bg-gray-800 dark:text-red-400" role="alert"> <div class="p-4 mb-4 text-sm text-red-800 rounded-lg bg-red-50 dark:bg-gray-800 dark:text-red-400" role="alert">

View File

@ -12,7 +12,7 @@ templ form(err types.Message, title string) {
<header class="text-center"> <header class="text-center">
<div class="space-y-2"> <div class="space-y-2">
<h1 class="text-3xl font-bold text-white">Sign Up</h1> <h1 class="text-3xl font-bold text-white">Sign Up</h1>
<p class="text-gray-500 dark:text-gray-400">Enter your email below to login to your account</p> <p class="text-gray-500 dark:text-gray-400">Enter your information to create an account</p>
switch err.Code { switch err.Code {
case 0: case 0:
<div class="p-4 mb-4 text-sm text-red-800 rounded-lg bg-red-50 dark:bg-gray-800 dark:text-red-400" role="alert"> <div class="p-4 mb-4 text-sm text-red-800 rounded-lg bg-red-50 dark:bg-gray-800 dark:text-red-400" role="alert">