Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions MySupplyChain.API/appsettings.Development.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}
4 changes: 4 additions & 0 deletions MySupplyChain.UI/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ function LoginGate({
<span className="material-symbols-outlined absolute left-4 top-1/2 -translate-y-1/2 text-outline/65 text-[20px]">mail</span>
<input
type="email"
autoComplete="username"
value={usernameOrEmail}
onChange={(e) => setUsernameOrEmail(e.target.value)}
placeholder="you@company.com"
Expand All @@ -161,6 +162,7 @@ function LoginGate({
<span className="material-symbols-outlined absolute left-4 top-1/2 -translate-y-1/2 text-outline/65 text-[20px]">lock</span>
<input
type="password"
autoComplete="current-password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="••••••••••••"
Expand Down Expand Up @@ -212,6 +214,7 @@ function LoginGate({
<span className="material-symbols-outlined absolute left-4 top-1/2 -translate-y-1/2 text-outline/65 text-[20px]">mail</span>
<input
type="email"
autoComplete="username"
value={signUpEmail}
onChange={(e) => setSignUpEmail(e.target.value)}
placeholder="you@company.com"
Expand All @@ -227,6 +230,7 @@ function LoginGate({
<span className="material-symbols-outlined absolute left-4 top-1/2 -translate-y-1/2 text-outline/65 text-[20px]">lock</span>
<input
type="password"
autoComplete="new-password"
value={signUpPassword}
onChange={(e) => setSignUpPassword(e.target.value)}
placeholder="Enter secure password"
Expand Down
Loading