Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
fa51b31fe4
|
|||
b9624aa5ad
|
|||
09e48e771f
|
|||
8364321a7c
|
|||
659fa77dca
|
15
CHANGELOG.md
15
CHANGELOG.md
@@ -2,9 +2,24 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
||||
|
||||
#### [0.11.2](https://git.odit.services/lfk/selfservice/compare/0.11.1...0.11.2)
|
||||
|
||||
- Added footer to every page [`b9624aa`](https://git.odit.services/lfk/selfservice/commit/b9624aa5ad57002852c84081fc710c2e977251bd)
|
||||
- Accept tos to accept privacy_policy [`09e48e7`](https://git.odit.services/lfk/selfservice/commit/09e48e771f4c0db4a7dbb898b05b347f1aad2292)
|
||||
|
||||
#### [0.11.1](https://git.odit.services/lfk/selfservice/compare/0.11.0...0.11.1)
|
||||
|
||||
> 18 February 2023
|
||||
|
||||
- Profile: add "---" if no data set [`659fa77`](https://git.odit.services/lfk/selfservice/commit/659fa77dca3b527d896d752386e91a167a1b8f4f)
|
||||
- 🚀Bumped version to v0.11.1 [`8364321`](https://git.odit.services/lfk/selfservice/commit/8364321a7cb6a0037ee0c5055b028c4cf883fb10)
|
||||
|
||||
#### [0.11.0](https://git.odit.services/lfk/selfservice/compare/0.10.0...0.11.0)
|
||||
|
||||
> 3 February 2023
|
||||
|
||||
- pnpm migration [`a3a1e89`](https://git.odit.services/lfk/selfservice/commit/a3a1e89aa14798e1d180697f91809e282a229f23)
|
||||
- 🚀Bumped version to v0.11.0 [`10c9127`](https://git.odit.services/lfk/selfservice/commit/10c9127256edf2cbad1dc6690d5f4e87c32f6396)
|
||||
|
||||
#### [0.10.0](https://git.odit.services/lfk/selfservice/compare/0.9.0...0.10.0)
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@odit/lfk-selfservice",
|
||||
"version": "0.11.0",
|
||||
"version": "0.11.2",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
|
@@ -9,15 +9,18 @@
|
||||
<div class="mx-auto prose" v-html="content"></div>
|
||||
</div>
|
||||
</section>
|
||||
<Footer></Footer>
|
||||
</template>
|
||||
<style src="../simple.css">
|
||||
</style>
|
||||
<script>
|
||||
import marked from "marked";
|
||||
import Footer from "@/components/Footer.vue";
|
||||
export default {
|
||||
components: {Footer},
|
||||
data() {
|
||||
return {
|
||||
content: ""
|
||||
content: "",
|
||||
}
|
||||
},
|
||||
async beforeMount() {
|
||||
|
@@ -9,12 +9,15 @@
|
||||
<div class="mx-auto prose" v-html="content"></div>
|
||||
</div>
|
||||
</section>
|
||||
<Footer></Footer>
|
||||
</template>
|
||||
<style src="../simple.css">
|
||||
</style>
|
||||
<script>
|
||||
import marked from "marked";
|
||||
import Footer from "@/components/Footer.vue";
|
||||
export default {
|
||||
components: {Footer},
|
||||
data() {
|
||||
return {
|
||||
content: ""
|
||||
|
@@ -311,7 +311,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.firstname"
|
||||
v-text="state.firstname || '---'"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-element">
|
||||
@@ -333,7 +333,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.middlename"
|
||||
v-text="state.middlename || '---'"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-element">
|
||||
@@ -355,7 +355,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.lastname"
|
||||
v-text="state.lastname || '---'"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-element">
|
||||
@@ -377,7 +377,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.email"
|
||||
v-text="state.email || '---'"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-element">
|
||||
@@ -399,7 +399,7 @@
|
||||
duration-200
|
||||
ease-in-out
|
||||
"
|
||||
v-text="state.phone"
|
||||
v-text="state.phone || '---'"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -639,51 +639,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<footer
|
||||
class="
|
||||
p-4
|
||||
bg-white
|
||||
rounded-lg
|
||||
shadow
|
||||
md:flex md:items-center md:justify-between md:p-6
|
||||
dark:bg-gray-800
|
||||
"
|
||||
>
|
||||
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400"
|
||||
><span class="font-bold">LfK! 2023</span> -
|
||||
<a
|
||||
class="underline"
|
||||
href="https://odit.services/?ref=lfk"
|
||||
target="_blank"
|
||||
>powered by ODIT.Services</a
|
||||
>
|
||||
</span>
|
||||
<ul
|
||||
class="
|
||||
flex flex-wrap
|
||||
items-center
|
||||
mt-3
|
||||
text-sm text-gray-500
|
||||
dark:text-gray-400
|
||||
sm:mt-0
|
||||
"
|
||||
>
|
||||
<li>
|
||||
<a
|
||||
href="https://lauf-fuer-kaya.de/impressum/"
|
||||
class="mr-4 hover:underline md:mr-6"
|
||||
>Impressum</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://lauf-fuer-kaya.de/datenschutz/"
|
||||
class="mr-4 hover:underline md:mr-6"
|
||||
>Datenschutz</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</footer>
|
||||
<Footer></Footer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -692,6 +648,7 @@ import { reactive } from "vue";
|
||||
import { TYPE, useToast } from "vue-toastification";
|
||||
import axios from "redaxios";
|
||||
import bwipjs from "bwip-js";
|
||||
import Footer from "@/components/Footer.vue";
|
||||
|
||||
function textToBase64Barcode(text) {
|
||||
const canvas = document.createElement("canvas");
|
||||
|
@@ -68,6 +68,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
@@ -77,6 +78,7 @@ import isEmail from 'validator/es/lib/isEmail';
|
||||
import isMobilePhone from 'validator/es/lib/isMobilePhone';
|
||||
import isPostalCode from 'validator/es/lib/isPostalCode';
|
||||
import { TYPE, useToast } from "vue-toastification";
|
||||
import Footer from "@/components/Footer.vue";
|
||||
|
||||
let user_email = ref("");
|
||||
//
|
||||
|
@@ -389,13 +389,13 @@
|
||||
for="agb_accepted"
|
||||
class="font-medium text-gray-400 select-none"
|
||||
>
|
||||
{{ $t("i_accept", { tos: $t("tos") }) }}
|
||||
{{ $t("i_accept", { tos: $t("privacy_policy") }) }}
|
||||
<a
|
||||
target="_blank"
|
||||
rel="noreferrer,noopener"
|
||||
href="https://lauf-fuer-kaya.de/datenschutz/"
|
||||
class="underline"
|
||||
>{{ $t("tos") }}</a
|
||||
>{{ $t("privacy_policy") }}</a
|
||||
>
|
||||
{{ $t("i_accept_end") }}
|
||||
<span class="font-bold">*</span>
|
||||
@@ -453,6 +453,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
@@ -462,6 +463,7 @@ import isEmail from "validator/es/lib/isEmail";
|
||||
import isMobilePhone from "validator/es/lib/isMobilePhone";
|
||||
import isPostalCode from "validator/es/lib/isPostalCode";
|
||||
import { TYPE, useToast } from "vue-toastification";
|
||||
import Footer from "@/components/Footer.vue";
|
||||
|
||||
const props = defineProps({
|
||||
token: String,
|
||||
|
@@ -11,9 +11,11 @@
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Footer from "@/components/Footer.vue";
|
||||
const props = defineProps({
|
||||
mail: String,
|
||||
});
|
||||
|
Reference in New Issue
Block a user