mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
32 lines
627 B
PHP
32 lines
627 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>HTML 5 Boilerplate</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
@if ($signature)
|
|
<center>
|
|
<img src="{{ $logo }}">
|
|
</center>
|
|
@endif
|
|
<br>
|
|
|
|
<h2>{{ $item->name }}</h2>
|
|
<p>Date: {{ date('Y-m-d h:i') }} </p>
|
|
@if ($eula)
|
|
{!! $eula !!}
|
|
@endif
|
|
|
|
<br><br>
|
|
@if ($signature)
|
|
<center>
|
|
<img src="{{ $signature }}" style="max-width: 50%">
|
|
</center>
|
|
@endif
|
|
</body>
|
|
</html> |