Commit a9d830fa by Joel Florentin

Merge branch 'giuli_001' of https://phoebe.roshka.com/gitlab/hshah/TalentoHumano into joel-001

parents 87be5ebb 015b3b82
...@@ -13,15 +13,15 @@ ...@@ -13,15 +13,15 @@
</head> </head>
<body> <body>
<jsp:include page="alerts.jsp"/> <jsp:include page="alerts.jsp"/>
<div> <div class="container">
<h2>Forgot Password</h2> <h2 class="col float-center">Recuperación de Contraseña</h2>
</div> </div>
<form:form action="/forgot-password" method="post" style="max-width: 420px; margin: 0 auto;"> <form:form action="/forgot-password" method="post" style="max-width: 420px; margin: 0 auto;">
<div class="border border-secondary rounded p-3"> <div class="border border-secondary rounded p-3">
<div> <div>
<p>We will be sending a reset password link to your email.</p> <p>Te enviaremos el link de recuperación de tu cuenta a tu email</p>
</div> </div>
<div> <div>
<p> <p>
......
...@@ -59,11 +59,11 @@ ...@@ -59,11 +59,11 @@
<div class="col-auto col-md-8"> <div class="col-auto col-md-8">
<select class="form-select form-select-sm " name="expInMonths" id="expInMonths"> <select class="form-select form-select-sm " name="expInMonths" id="expInMonths">
<option value="">Todas</option> <option value="">Todas</option>
<option value="0-6">Menor a 6 meses</option> <option value="0-6" ${param.expInMonths == "0-6" ? "selected" : ""}>Menor a 6 meses</option>
<option value="0-12">Menor a 1 año</option> <option value="0-12" ${param.expInMonths == "0-12" ? "selected" : ""}>Menor a 1 año</option>
<option value="0-36">Menor a 3 años</option> <option value="0-36" ${param.expInMonths == "0-36" ? "selected" : ""}>Menor a 3 años</option>
<option value="0-60">Menor a 5 años</option> <option value="0-60" ${param.expInMonths == "0-60" ? "selected" : ""}>Menor a 5 años</option>
<option value="60-1200">Mayor a 5 años</option> <option value="60-1200" ${param.expInMonths == "60-1200" ? "selected" : ""}>Mayor a 5 años</option>
</select> </select>
</div> </div>
......
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
</head> </head>
<body> <body>
<jsp:include page="alerts.jsp"/> <jsp:include page="alerts.jsp"/>
<div> <div class="container">
<h2>Reset Your Password</h2> <h2>Cambia tu contraseña</h2>
</div> </div>
<form:form action="/reset-password" method="post" style="max-width: 350px; margin: 0 auto;"> <form:form action="/reset-password" method="post" style="max-width: 350px; margin: 0 auto;">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment