File: D:/HostingSpaces/Anvil/anvil-industries.com/resources/views/signature/form.blade.php
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0">
<title>E-mailhandtekening generator</title>
<meta name="csrf-token" content="{{ csrf_token() }}">
<link href="{{ mix('css/style.css') }}" type="text/css" rel="stylesheet"/>
<meta name="robots" content="noindex"/>
</head>
<body>
<div class="line-background">
<div class="grid-row">
@for($i=0;$i<4;$i++)
<div class="grid-col col-3"></div>
@endfor
</div>
</div>
<section class="photo-header" style="padding-top: 40px; padding-bottom: 80px;">
<div class="grid-row">
<div class="text-wrapper">
<h1>E-mailhandtekening generator</h1>
</div>
</div>
</section>
<div class="form-contact-info-row">
<div class="grid-row">
<div class="form-placeholder">
<form method="GET" target="_blank" class="form">
<div class="form-element">
<label for="template" style="top: -32px; left: 20px;">Template wijzigen naar Bedrijf</label>
<div class="select">
<div class="select-wrapper">
<select class="select-menu" name="template" id="template">
<option value="anvil">Anvil</option>
<option value="bkl">BKL</option>
<option value="contour">Contour</option>
<option value="jansen">Jansen</option>
<option value="rols">Rols</option>
<option value="job">JOB</option>
</select>
</div>
<div class="icon"></div>
</div>
</div>
<br/>
<br/>
<div class="form-element">
<label for="template" style="top: -32px; left: 20px;">Template soort</label>
<div class="select">
<div class="select-wrapper">
<select class="select-menu" name="size" id="template">
<option value="default">Default</option>
<option value="short">Kort</option>
</select>
</div>
<div class="icon"></div>
</div>
</div>
<br/>
<div class="form-element">
<label for="name">Naam</label>
<input name="name" id="name" placeholder="..." required>
</div>
<div class="form-element">
<label for="function">Functie</label>
<input name="function" id="function" placeholder="..." required>
</div>
<div class="form-element">
<label for="phone">Telefoon</label>
<input name="phone" id="phone" placeholder="..." required>
</div>
<div class="form-element">
<label for="mobile">Mobiel (optioneel)</label>
<input name="mobile" id="mobile" placeholder="...">
</div>
<div class="form-element">
<label for="email">Email</label>
<input name="email" id="email" placeholder="..." required>
</div>
<div class="form-element">
<label for="greeting">Afsluiting (optioneel)</label>
<input name="greeting" id="greeting" placeholder="Met vriendelijke groet,">
</div>
<div class="form-element">
<label for="note">Notitie (optioneel)</label>
<textarea placeholder="..." rows="5" name="note" id="note"></textarea>
</div>
<div class="submit">
<button class="button" type="submit">
Maak handtekening
<span class="arrow"></span>
</button>
</div>
</form>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Barlow:400,400i,500,500i,600,700,700i']
}
});
</script>
</body>
</html>