aboutsummaryrefslogtreecommitdiffstats
path: root/client/templates/client/approve_doc_pdf.html
blob: db1478e799f685a707a0b81e1a147c15c20d4522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
  <title></title>
</head>
<body style="background: white;">
  <main style="margin-left: 10px;margin-right: 10px;margin-top: 10px; background: white;">
    <br><br><br><br>
    <br><br><br><br>
    <div class="row">
      <h2 class="center">{{doc.code}}</h2>
    </div>
    <div class="row">
      <h4 class="center">{{doc.document_type.name}}</h4>
    </div>
    <div class="row">
      <div class="col s8 offset-s2">
        <p>Con la presente firma approvo il documento con codice {{doc.code}} accettando
        tutte le clausole apposte su di esso. <br>
        Comprovo come veritieri e completi tutti i dati apposti sul documento.
        {% if doc.document_type.medical_data %}
          <br>
          Autorizzo i capi ad usare i dati medici, in caso d'emergenza, ed intraprendere i passi necessari per dare avvio a cure mediche d’urgenza anche senza essere ulteriormente consultato/a.
        {% endif %}
        {% if doc.document_type.custom_message %}
          <br>
          <br>
          Inoltre accetto e prendo nota della seguente clausula aggiuntiva: <br>
          {{doc.document_type.custom_message_text | linebreaksbr}}
        {% endif %}
        </p>
      </div>
    </div>
    <br><br><br><br>
    <div class="row">
      <div class="col s4 offset-s1">
        <div class="input-field">
          <input type="text" style="border-bottom: 1px solid black">
          <span class="helper-text" style="color: black">Data e luogo</span>
        </div>
      </div>
      <div class="col s4 offset-s2">
        <div class="input-field">
          <input type="text" style="border-bottom: 1px solid black">
          <span class="helper-text" style="color: black">Firma</span>
        </div>
      </div>
    </div>
  </main>
</body>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</html>