Skip to content

Commit 08ea4fe

Browse files
authored
Improve form geintresserde (#986)
* intial commit * merge * fix variable * Update header.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js * Update environment.js
1 parent 64e4d67 commit 08ea4fe

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

app/components/public/index/header.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<span>{{t 'component.public.index.header.slogan-5'}}</span>
1111
</p>
1212
<div class="header-buttons d-flex flex-wrap justify-content-center">
13-
<a href='https://forms.gle/R4WYzbWameD6wN817' target='_blank' class="mt-4 mx-3">
13+
<a href={{this.interestedFormLink}} target='_blank' class="mt-4 mx-3">
1414
<button class="btn btn-lg btn-primary header-button" type="button">
1515
{{t 'component.public.index.header.interested'}}
1616
</button>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import Component from '@glimmer/component';
2+
import ENV from 'amber-ui/config/environment';
3+
4+
export default class HeaderComponent extends Component {
5+
get interestedFormLink() {
6+
return ENV.APP.formLinkInterested;
7+
}
8+
}

config/environment.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ module.exports = function (environment) {
2222
APP: {
2323
// Here you can pass flags/options to your application instance
2424
// when it is created
25+
formLinkInterested:
26+
'https://nextcloud.csvalpha.nl/apps/forms/s/PKfanXfcqzex3YzSkJK6X8C9',
27+
2528
flashNoticeDefaultDuration: 2000,
2629
},
2730

0 commit comments

Comments
 (0)