Ajoute les 3 autres maquettes

This commit is contained in:
2020-07-02 11:22:49 +02:00
parent 946eb96921
commit 95df771d68
5 changed files with 97 additions and 2 deletions

30
src/pages/tokens.html Normal file
View File

@@ -0,0 +1,30 @@
---
subject: "ReadLaterByEmail tokens"
LOGO: "{{ asset('images/logo.png') }}"
TOKEN_NAME: "{{ $token->token_name }}"
API_TOKEN: "{{ $token->api_token }}"
---
<row>
<columns>
<h5 class="text-center">Vos tokens</h5>
</columns>
</row>
<spacer size="16"></spacer>
<row>
@foreach($tokens as $token)
<columns><hr/></columns>
<columns large="4" small="12" valign="left">
{{{ TOKEN_NAME }}}
</columns>
<columns large="8" small="12" valign="left">
{{{ API_TOKEN }}}
</columns>
@endforeach
</row>