-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
HRN
authored and
HRN
committed
Aug 30, 2024
1 parent
ef1d451
commit d5f4d68
Showing
1 changed file
with
53 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,63 @@ | ||
<script> | ||
let name = ''; | ||
let title = ''; | ||
let email = ''; | ||
let phone = ''; | ||
let name = ''; | ||
let title = ''; | ||
let email = ''; | ||
let phone = ''; | ||
</script> | ||
|
||
<div> | ||
<h1>Mail Signature</h1> | ||
<h2>1. Enter your details</h2> | ||
<h1>Mail Signature</h1> | ||
<h2>1. Enter your details</h2> | ||
|
||
<!-- Namn --> | ||
<label for="name">Name:</label> | ||
<input id="name" type="text" bind:value={name} placeholder="Förnamn Efternamn" /> | ||
<br /> | ||
<!-- Namn --> | ||
<label for="name">Name:</label> | ||
<input id="name" type="text" bind:value={name} placeholder="Förnamn Efternamn" /> | ||
<br /> | ||
|
||
<!-- Titel --> | ||
<label for="title"> Title:</label> | ||
<input id="title" type="text" bind:value={title} placeholder="Yrkestitel" /> | ||
<br /> | ||
<!-- Titel --> | ||
<label for="title"> Title:</label> | ||
<input id="title" type="text" bind:value={title} placeholder="Yrkestitel" /> | ||
<br /> | ||
|
||
<!-- E-postadress --> | ||
<label for="email">Email:</label> | ||
<input id="email" type="text" bind:value={email} placeholder="[email protected]" /> | ||
<br /> | ||
<!-- E-postadress --> | ||
<label for="email">Email:</label> | ||
<input id="email" type="text" bind:value={email} placeholder="[email protected]" /> | ||
<br /> | ||
|
||
<!-- Telefon --> | ||
<label for="phone">Phone:</label> | ||
<input id="phone" type="text" bind:value={phone} placeholder="+46 NNN NN NN NN" /> | ||
<br /> | ||
<!-- Telefon --> | ||
<label for="phone">Phone:</label> | ||
<input id="phone" type="text" bind:value={phone} placeholder="+46 NNN NN NN NN" /> | ||
<br /> | ||
|
||
<h2>2. Copy your signature to your mail client</h2> | ||
<h2>2. Copy your signature to your mail client</h2> | ||
|
||
<div> | ||
<table cellpadding="0" cellspacing="0" style="border:0; font-family: Arial, sans-serif;"> | ||
<tr> | ||
<td style="padding-right: 15px;"> | ||
<img src="https://iteam.se/apple-touch-icon.png" alt="Iteam Logo" height="105" style="display: block;"> | ||
</td> | ||
<td style="vertical-align: middle;"> | ||
<p style="font-weight: bold; margin: 0;">{name}</p> | ||
<p style="margin: 0 0 5px 0;">{title}</p> | ||
<p style="margin: 0;"> | ||
<a href="tel:{phone}" style="color: #000000; text-decoration: none;">{phone}</a> | ||
</p> | ||
<p style="margin: 0;"> | ||
<a href="mailto:{email}" style="color: #FF3B5C; text-decoration: none;">{email}</a> | ||
</p> | ||
<p style="margin: 0;"> | ||
<a href="https://www.iteam.se" style="color: #FF3B5C; text-decoration: none;">www.iteam.se</a> | ||
</p> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
<div> | ||
<table cellpadding="0" cellspacing="0" style="border:0; font-family: Arial, sans-serif;"> | ||
<tr> | ||
<td style="padding-right: 15px;"> | ||
<img | ||
src="https://iteam.se/apple-touch-icon.png" | ||
alt="Iteam Logo" | ||
height="105" | ||
style="display: block;" | ||
/> | ||
</td> | ||
<td style="vertical-align: middle;"> | ||
<p style="font-weight: bold; margin: 0;">{name}</p> | ||
<p style="margin: 0 0 5px 0;">{title}</p> | ||
<p style="margin: 0;"> | ||
<a href="tel:{phone}" style="color: #000000; text-decoration: none;">{phone}</a> | ||
</p> | ||
<p style="margin: 0;"> | ||
<a href="mailto:{email}" style="color: #FF3B5C; text-decoration: none;">{email}</a> | ||
</p> | ||
<p style="margin: 0;"> | ||
<a href="https://www.iteam.se" style="color: #FF3B5C; text-decoration: none;" | ||
>www.iteam.se</a | ||
> | ||
</p> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> |