Skip to content

Commit

Permalink
Fixed strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelcanosantana committed Nov 26, 2023
1 parent abda3b9 commit efb8c94
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
8 changes: 3 additions & 5 deletions Pages/CustomAffiliatePage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,16 @@
<div class="col-12 col-md-6">

<!-- Description still loading -->
<h1>@affiliateUid</h1>

@if(customStyle == null)
{
<h1>Loading...</h1>
<p>Loading...</p>
}
//Loaded description
else
{
<h1 class="display-5 fw-bold"> @customStyle.GetTitle() </h1>
<h4 class="fw-bold"> @customStyle.GetTitle() </h4>
<p>
Inicia sesión como afiliado para acceder al panel administrativo.
@customStyle.GetSummary()
</p>
}

Expand Down
19 changes: 10 additions & 9 deletions Services/UserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,16 @@ public void InitializeDummyDB()

AffiliateStyle testStyle = new AffiliateStyle(
testUser.GetId(),
"🪅🎉🎈Bienvenido Meow!🎈🎉🪅",
"Regístrate con tu correo para obtener las siguientes ventajas!" +
"\n\n" +
"Cat ipsum dolor sit amet, panther so bombay yet cornish rex and turkish angora." +
"Lynx siberian for mouser abyssinian or british shorthair, " +
"or devonshire rex.Tiger tomcat norwegian forest so lion bobcat and siberian." +
"Tiger birman but leopard.Mouser siberian cheetah ocicat yet jaguar but donskoy." +
"Kitten cheetah so birman singapura.Siberian maine coon and cougar kitty.Tomcat tom.",
"https://img.freepik.com/premium-vector/funny-cute-cats-seamless-pattern-childish-animal-white-repeat-background-simple-pets-ornament-wallpaper-wrapping-paper-modern-trendy-hand-drawn-vector-illustration-flat-cartoon-style_318237-342.jpg?w=826",
@$"🪅🎉Bienvenido Meow!🎉🪅",
$@"Regístrate con tu correo para obtener las siguientes ventajas!
Cat ipsum dolor sit amet, panther so bombay yet cornish rex and turkish angora.
Lynx siberian for mouser abyssinian or british shorthair,
or devonshire rex.Tiger tomcat norwegian forest so lion bobcat and siberian.
Tiger birman but leopard.Mouser siberian cheetah ocicat yet jaguar but donskoy.
Kitten cheetah so birman singapura.Siberian maine coon and cougar kitty.Tomcat tom.",
"https://img.freepik.com/premium-vector/funny-cute-cats-seamless-pattern-childish-animal-white-repeat-background-simple-pets-ornament-wallpaper-wrapping-paper-modern-trendy-hand-drawn-vector-illustration-flat-cartoon-style_318237-342.jpg?w=826",
"https://images.unsplash.com/photo-1602779717364-d044d7492ed7?q=80&w=2154&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
);

Expand Down

0 comments on commit efb8c94

Please sign in to comment.