@adlas/create-app 1.0.41 → 1.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/init.js +9 -9
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -1113,7 +1113,7 @@ async function createAuthPages(config, hasI18n) {
|
|
|
1113
1113
|
children: React.ReactNode;
|
|
1114
1114
|
}) {
|
|
1115
1115
|
return (
|
|
1116
|
-
<div className="min-h-screen
|
|
1116
|
+
<div className="flex min-h-screen items-center justify-center bg-default-50">
|
|
1117
1117
|
{children}
|
|
1118
1118
|
</div>
|
|
1119
1119
|
);
|
|
@@ -1125,8 +1125,8 @@ async function createAuthPages(config, hasI18n) {
|
|
|
1125
1125
|
|
|
1126
1126
|
export default function LoginPage() {
|
|
1127
1127
|
return (
|
|
1128
|
-
<div className="w-full max-w-md
|
|
1129
|
-
<h1 className="text-2xl font-bold
|
|
1128
|
+
<div className="w-full max-w-md space-y-6 rounded-lg bg-white p-8 shadow-md">
|
|
1129
|
+
<h1 className="text-center text-2xl font-bold">Login</h1>
|
|
1130
1130
|
{/* Add your login form here */}
|
|
1131
1131
|
</div>
|
|
1132
1132
|
);
|
|
@@ -1138,8 +1138,8 @@ export default function LoginPage() {
|
|
|
1138
1138
|
|
|
1139
1139
|
export default function ForgetPasswordPage() {
|
|
1140
1140
|
return (
|
|
1141
|
-
<div className="w-full max-w-md
|
|
1142
|
-
<h1 className="text-2xl font-bold
|
|
1141
|
+
<div className="w-full max-w-md space-y-6 rounded-lg bg-white p-8 shadow-md">
|
|
1142
|
+
<h1 className="text-center text-2xl font-bold">Forget Password</h1>
|
|
1143
1143
|
{/* Add your forget password form here */}
|
|
1144
1144
|
</div>
|
|
1145
1145
|
);
|
|
@@ -1151,8 +1151,8 @@ export default function ForgetPasswordPage() {
|
|
|
1151
1151
|
|
|
1152
1152
|
export default function ResetPasswordPage() {
|
|
1153
1153
|
return (
|
|
1154
|
-
<div className="w-full max-w-md
|
|
1155
|
-
<h1 className="text-2xl font-bold
|
|
1154
|
+
<div className="w-full max-w-md space-y-6 rounded-lg bg-white p-8 shadow-md">
|
|
1155
|
+
<h1 className="text-center text-2xl font-bold">Reset Password</h1>
|
|
1156
1156
|
{/* Add your reset password form here */}
|
|
1157
1157
|
</div>
|
|
1158
1158
|
);
|
|
@@ -1165,8 +1165,8 @@ export default function ResetPasswordPage() {
|
|
|
1165
1165
|
|
|
1166
1166
|
export default function RegisterPage() {
|
|
1167
1167
|
return (
|
|
1168
|
-
<div className="w-full max-w-md
|
|
1169
|
-
<h1 className="text-2xl font-bold
|
|
1168
|
+
<div className="w-full max-w-md space-y-6 rounded-lg bg-white p-8 shadow-md">
|
|
1169
|
+
<h1 className="text-center text-2xl font-bold">Register</h1>
|
|
1170
1170
|
{/* Add your registration form here */}
|
|
1171
1171
|
</div>
|
|
1172
1172
|
);
|