File size: 1,695 Bytes
25ef50a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CHRIS-MetalError</title>
    <link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles.css') }}">

    <style>
    * {
      box-sizing: border-box;
    }

    /* Create two equal columns that floats next to each other */
    .column {
      float: left;
      width: 50%;
      padding: 10px;
      vertical-align: top;
      align: center;
    }

    /* Clear floats after the columns */
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    </style>

</head>

<img src="{{ url_for('static',filename='images/FDAlogo.png') }}" style="float: left;" height="100"/>
<img src="{{ url_for('static',filename='images/FDAgraphic.png') }}" style="float: right;"  height="100"/>
<br clear="all" />

<body>

<div style="font-size:5rem;text-align:center"> &#129318; </div>

<h2> Compound </h2>

<div class="container">
<div class="row">
  <div class="column">
      Input ::  {{chemName}} <br> <br>
      IUPAC Name ::  {{iupac}} <br> <br>
      CAS ::  {{cas}} <br> <br>
      Molecular weight (g/mol) :: {{'%0.4f'%MW|float}} <br> <br>
      {% if show_properties %} 
      LogKow :: {{LogP}}{{LogP_origin}} <br> <br>
      Density (g/cm<sup>3</sup>) :: {{rho}}{{rho_origin}} <br> <br>
      Melting point (&deg;C) :: {{mp}}{{mp_origin}} <br> <br>
      {% endif %}
      SMILES :: {{smiles}}
  </div>
  <div class="column">
      <img src="{{molImage}}"/>
  </div>
</div>
</div>

<p style="font-size:2rem;text-align:center">
    Unfortunately, CHRIS cannot be used for metals.  Please return to the previous page to evaluate
    a different chemical.
</p>


</body>