mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
21 lines
566 B
HTML
21 lines
566 B
HTML
subject = "Welcome to {{ appName | raw }}"
|
|
layout = "system"
|
|
description = "Invite new admin to the site"
|
|
==
|
|
Hi {{ name }}
|
|
|
|
A user account has been created for you on **{{ appName }}**.
|
|
|
|
{% partial 'panel' body %}
|
|
- Login: `{{ login ?: 'sample' }}`
|
|
- Password: `{{ (password ?: '********') | raw }}`
|
|
{% endpartial %}
|
|
|
|
You can use the following link to sign in:
|
|
|
|
{% partial 'button' url=link body %}
|
|
Sign in to admin area
|
|
{% endpartial %}
|
|
|
|
After signing in you should change your password by clicking your name on the top right corner of the administration area.
|