diff options
| author | 2024-04-11 11:45:53 +0200 | |
|---|---|---|
| committer | 2024-04-11 11:45:53 +0200 | |
| commit | 9fb8a78f91adffd5f4d28df1270e407c25a7a16e (patch) | |
| tree | d68200744e28d07e75a52bb0c9f6593c86a38a91 /web/template/about.tmpl | |
| parent | [performance] massively improved ActivityPub delivery worker efficiency (#2812) (diff) | |
| download | gotosocial-9fb8a78f91adffd5f4d28df1270e407c25a7a16e.tar.xz | |
[feature] New user sign-up via web page (#2796)
* [feature] User sign-up form and admin notifs
* add chosen + filtered languages to migration
* remove stray comment
* chosen languages schmosen schmanguages
* proper error on local account missing
Diffstat (limited to 'web/template/about.tmpl')
| -rw-r--r-- | web/template/about.tmpl | 36 |
1 files changed, 13 insertions, 23 deletions
diff --git a/web/template/about.tmpl b/web/template/about.tmpl index 04b0b095f..d8a540d19 100644 --- a/web/template/about.tmpl +++ b/web/template/about.tmpl @@ -59,37 +59,26 @@ {{- end }} {{- end -}} -{{- define "registrationLimits" -}} -{{- if .instance.Registrations -}} - Registration is enabled; new signups can be submitted to this instance.<br/> - {{- if .instance.ApprovalRequired -}} - Admin approval is required for new registrations. - {{- else -}} - Admin approval is not required for registrations; new signups will be automatically approved (pending email confirmation). - {{- end -}} -{{- else -}} - Registration is disabled; new signups are currently closed for this instance. -{{- end -}} -{{- end -}} - {{- define "customCSSLimits" -}} +<a href="https://docs.gotosocial.org/en/latest/user_guide/settings/#custom-css" target="_blank" rel="noopener noreferrer">Custom CSS</a> is {{- if .instance.Configuration.Accounts.AllowCustomCSS -}} -Users are allowed to set <a href="https://docs.gotosocial.org/en/latest/user_guide/custom_css/" target="_blank" rel="noopener noreferrer">Custom CSS</a> for their profiles. +<b>enabled</b> {{- else -}} -<a href="https://docs.gotosocial.org/en/latest/user_guide/custom_css/" target="_blank" rel="noopener noreferrer">Custom CSS</a> is not enabled for user profiles. +</b>disabled</b> {{- end -}} + on account profiles. {{- end -}} {{- define "statusLimits" -}} -Statuses can contain up to -{{- .instance.Configuration.Statuses.MaxCharacters }} characters, and -{{- .instance.Configuration.Statuses.MaxMediaAttachments }} media attachments. +Statuses can contain up to +<b>{{- .instance.Configuration.Statuses.MaxCharacters }} characters</b>, and +<b>{{- .instance.Configuration.Statuses.MaxMediaAttachments }} media attachments</b>. {{- end -}} {{- define "pollLimits" -}} -Polls can have up to -{{- .instance.Configuration.Polls.MaxOptions }} options, with -{{- .instance.Configuration.Polls.MaxCharactersPerOption }} characters per option. +Polls can have up to +<b>{{- .instance.Configuration.Polls.MaxOptions }} options</b>, with +<b>{{- .instance.Configuration.Polls.MaxCharactersPerOption }} characters per option</b>. {{- end -}} {{- with . }} @@ -102,6 +91,7 @@ Polls can have up to <li><a href="#contact">Contact</a></li> <li><a href="#features">Features</a></li> <li><a href="#languages">Languages</a></li> + <li><a href="#signup">Register an Account on {{ .instance.Title -}}</li> <li><a href="#rules">Rules</a></li> <li><a href="#terms">Terms and Conditions</a></li> <li><a href="#moderated-servers">Moderated Servers</a></li> @@ -145,10 +135,9 @@ Polls can have up to <h3 id="features">Instance Features</h3> <div class="about-section-contents"> <ul> - <li>{{- template "registrationLimits" . -}}</li> - <li>{{- template "customCSSLimits" . -}}</li> <li>{{- template "statusLimits" . -}}</li> <li>{{- template "pollLimits" . -}}</li> + <li>{{- template "customCSSLimits" . -}}</li> </ul> </div> </section> @@ -160,6 +149,7 @@ Polls can have up to {{- end }} </div> </section> + {{- include "index_register.tmpl" . | indent 1 }} <section class="about-section" role="region" aria-labelledby="rules"> <h3 id="rules">Instance Rules</h3> <div class="about-section-contents"> |
