zipurman / oVIRT_Simple_Backup

A REST API backup using PHP for oVirt 4.2.x
GNU General Public License v3.0
56 stars 32 forks source link

web no seen correctly #5

Closed txsastre closed 6 years ago

txsastre commented 6 years ago

I set an exception to firefox( Add Exception: FireFox -> Tools -> Advanced -> View Certificates -> Servers -> Add Exception. ), so I can avoid the "self-signed certificate" error.

but now I cannot see the web correctly. Seems that the main page is not finding the header, style, footer...

seleccio_028

txsastre commented 6 years ago

I've found the problem. the file "index.php" has this code missing at the top.

```html
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>

seleccio_012