updated profile page
This commit is contained in:
parent
90c085db28
commit
4fcc38c374
@ -12,7 +12,7 @@
|
|||||||
text-center text-black
|
text-center text-black
|
||||||
dark:text-gray-200
|
dark:text-gray-200
|
||||||
">
|
">
|
||||||
<p class="text-3xl font-bold whitespace-nowrap" v-text="(state.firstname || '') +
|
<p class="text-4xl md:text-3xl font-bold whitespace-nowrap font-[Athiti]" v-text="(state.firstname || '') +
|
||||||
' ' +
|
' ' +
|
||||||
(state.middlename || '') +
|
(state.middlename || '') +
|
||||||
' ' +
|
' ' +
|
||||||
@ -24,9 +24,11 @@
|
|||||||
<div v-if="state.delete_active === false">
|
<div v-if="state.delete_active === false">
|
||||||
<button type="button" class="
|
<button type="button" class="
|
||||||
focus:border-black focus:ring-2 focus:ring-black
|
focus:border-black focus:ring-2 focus:ring-black
|
||||||
text-white text-sm
|
text-white text-base md:text-sm
|
||||||
py-2.5
|
py-3.5
|
||||||
px-5
|
px-5
|
||||||
|
md:py-2.5
|
||||||
|
md:px-5
|
||||||
rounded-md
|
rounded-md
|
||||||
bg-blue-500
|
bg-blue-500
|
||||||
hover:bg-blue-600 hover:shadow-lg
|
hover:bg-blue-600 hover:shadow-lg
|
||||||
@ -46,9 +48,11 @@
|
|||||||
</button>
|
</button>
|
||||||
<button type="button" class="
|
<button type="button" class="
|
||||||
focus:border-black focus:ring-2 focus:ring-black
|
focus:border-black focus:ring-2 focus:ring-black
|
||||||
text-white text-sm
|
text-white text-base md:text-sm
|
||||||
py-2.5
|
py-3.5
|
||||||
px-5
|
px-5
|
||||||
|
md:py-2.5
|
||||||
|
md:px-5
|
||||||
rounded-md
|
rounded-md
|
||||||
bg-blue-500
|
bg-blue-500
|
||||||
hover:bg-blue-600 hover:shadow-lg
|
hover:bg-blue-600 hover:shadow-lg
|
||||||
@ -68,9 +72,11 @@
|
|||||||
</button>
|
</button>
|
||||||
<button type="button" class="
|
<button type="button" class="
|
||||||
focus:border-black focus:ring-2 focus:ring-black
|
focus:border-black focus:ring-2 focus:ring-black
|
||||||
text-white text-sm
|
text-white text-base md:text-sm
|
||||||
py-2.5
|
py-3.5
|
||||||
px-5
|
px-5
|
||||||
|
md:py-2.5
|
||||||
|
md:px-5
|
||||||
rounded-md
|
rounded-md
|
||||||
bg-red-600
|
bg-red-600
|
||||||
hover:bg-red-700 hover:shadow-lg
|
hover:bg-red-700 hover:shadow-lg
|
||||||
@ -93,9 +99,11 @@
|
|||||||
<div v-if="state.delete_active === true">
|
<div v-if="state.delete_active === true">
|
||||||
<button type="button" class="
|
<button type="button" class="
|
||||||
focus:border-black focus:ring-2 focus:ring-black
|
focus:border-black focus:ring-2 focus:ring-black
|
||||||
text-white text-sm
|
text-white text-base md:text-sm
|
||||||
py-2.5
|
py-3.5
|
||||||
px-5
|
px-5
|
||||||
|
md:py-2.5
|
||||||
|
md:px-5
|
||||||
rounded-md
|
rounded-md
|
||||||
mb-1
|
mb-1
|
||||||
md:mb-auto
|
md:mb-auto
|
||||||
@ -117,9 +125,11 @@
|
|||||||
</button>
|
</button>
|
||||||
<button type="button" class="
|
<button type="button" class="
|
||||||
focus:border-black focus:ring-2 focus:ring-black
|
focus:border-black focus:ring-2 focus:ring-black
|
||||||
text-white text-sm
|
text-white text-base md:text-sm
|
||||||
py-2.5
|
py-3.5
|
||||||
px-5
|
px-5
|
||||||
|
md:py-2.5
|
||||||
|
md:px-5
|
||||||
rounded-md
|
rounded-md
|
||||||
w-full
|
w-full
|
||||||
md:w-auto
|
md:w-auto
|
||||||
@ -591,7 +601,7 @@ function get_certificate() {
|
|||||||
})
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
console.log(response);
|
console.log(response);
|
||||||
if (response.status != "200") {
|
if (response.status !== 200) {
|
||||||
toast.error(t('urkunde_konnte_nicht_generiert_werden'));
|
toast.error(t('urkunde_konnte_nicht_generiert_werden'));
|
||||||
} else {
|
} else {
|
||||||
var fileURL = window.URL.createObjectURL(
|
var fileURL = window.URL.createObjectURL(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user