fix(signup-form): update header and welcome message for clarity
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 8m55s

This commit is contained in:
2025-07-27 14:22:32 +05:00
parent 644e4f730f
commit db261ae0bd
3 changed files with 20 additions and 20 deletions

View File

@ -21,10 +21,12 @@ This is a web portal for SAR Link customers.
- [x] Add all the filters for parental control table (mobile responsive)
- [x] Disable blocking if payment is pending or omit from the table if device payment is pending
### Topups
- [ ] add textarea in topup dialog for admin. if no detail given generate on backend otherwise take the text from text area
### Agreements
- [x] Implement file upload for admin side
- [ ] Add customer relavant documents in a grid view
- [ ] Add filtering by date for agreements
## Admin Controls
### Users

View File

@ -1,14 +1,13 @@
"use client";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import Link from "next/link";
import { signup } from "@/actions/auth-actions";
import { cn } from "@/lib/utils";
import { keepPreviousData, useQuery } from "@tanstack/react-query";
import { Loader2 } from "lucide-react";
import Image from "next/image";
import Link from "next/link";
import { useSearchParams } from "next/navigation";
import * as React from "react";
import { signup } from "@/actions/auth-actions";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import {
Select,
SelectContent,
@ -19,9 +18,8 @@ import {
SelectValue,
} from "@/components/ui/select";
import type { ApiResponse, Atoll } from "@/lib/backend-types";
import { cn } from "@/lib/utils";
import { getAtolls } from "@/queries/islands";
import { keepPreviousData, useQuery } from "@tanstack/react-query";
import Image from "next/image";
export default function SignUpForm() {
const { data: atolls } = useQuery<ApiResponse<Atoll>>({
@ -82,11 +80,11 @@ export default function SignUpForm() {
/>
</div>
<h3 className="text-xl font-semibold dark:text-orange-100">
SAR Link Portal
SAR Link by OmegaTech Solutions
</h3>
</div>
<h1 className="text-4xl font-bold mb-6">Welcome to Our Platform</h1>
<h1 className="text-4xl font-bold mb-6">Register your account</h1>
<p className="text-xl mb-8 dark:text-orange-100">
Pay for your devices and track your bills.
</p>