welcome back to dyb-tech

This commit is contained in:
Daniel Guzman
2024-05-18 02:28:01 +02:00
parent 9513cdba09
commit 9f30bc98c7
6149 changed files with 668407 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{% block stylesheets %}
{% endblock %}
{% block javascripts %}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>
+6
View File
@@ -0,0 +1,6 @@
<h1>Hola {{ rejectedUser.name }}!</h1>
<p>
Lo sentimos, el presidente de {{ league.name }} ha rechazado tu solicitud para unirte. Aqui mas texto se puede decir que contacte con el presidente
e intente de nuevo.
</p>
+10
View File
@@ -0,0 +1,10 @@
<h1>Hola {{ president.firstName }}!</h1>
<p>
{{ requestingUserFullName }} te ha enviado una solicitud para unirse a la liga.
</p>
<p>
<a href="http://developer:mambita@devliga.dyb-tech.com/api/league/{{ league.id }}/user/{{ requestingUser.id }}/accept">Aceptar</a>
<a href="http://developer:mambita@devliga.dyb-tech.com/api/league/{{ league.id }}/user/{{ requestingUser.id }}/decline">Rechazar</a>
</p>
@@ -0,0 +1,5 @@
<h1>Hola {{ user.firstName }} {{ user.lastName }}!</h1>
<p>
Sentimos informate que han rechazado tu solicitud para unirte a {{ league.name }}.
</p>
+20
View File
@@ -0,0 +1,20 @@
{% extends 'base.html.twig' %}
{% block title %}Hello NotificationController!{% endblock %}
{% block body %}
<style>
.example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
.example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
</style>
<div class="example-wrapper">
<h1>Hello {{ controller_name }}! ✅</h1>
This friendly message is coming from:
<ul>
<li>Your controller at <code>D:/My Stuff/La Liga/src/Controller/NotificationController.php</code></li>
<li>Your template at <code>D:/My Stuff/La Liga/templates/notification/index.html.twig</code></li>
</ul>
</div>
{% endblock %}
+10
View File
@@ -0,0 +1,10 @@
<h1>Hola {{ userToNotify.firstName }}!</h1>
<p>
{{ requestingUser.firstName }} {{ requestinUser.lastName}} te ha enviado una solicitud para ser capitán de {{ team.name }}.
</p>
<p>
<a href="http://developer:mambita@devliga.dyb-tech.com/api/league/{{ league.id }}/team/{{ team.id }}/captain/{{ requestingUser.id }}">Aceptar</a>
<a href="http://developer:mambita@devliga.dyb-tech.com/api/league/{{ league.id }}/user/{{ requestingUser.id }}/decline">Rechazar</a>
</p>
+6
View File
@@ -0,0 +1,6 @@
<h1>Hola {{ user.firstName }} {{ user.lastName }}!</h1>
<p>
Han aceptado tu solicitud para unirte a {{ league.name }}. Aqui la info de
lo que puede hacer como capitan del equipo.
</p>