-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
30 lines (28 loc) · 1.33 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fundación Husped</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 class="general-title">DESAFÍO FUNDACIÓN HUESPED</h1>
<div class="form-container">
<?php
if( isset($_GET['status']) ) { ?>
<h3 class="status_title">Creacion de certificados exitosa</h3>
<img class="form-container_img" src="https://i.ibb.co/y05Yt1k/check.png" alt="upload">
<button class="form-container_submit" onclick="window.location='index.php';"> Volver </button>
<?php }else{ ?>
<img class="form-container_img" src="https://i.ibb.co/dfSvqtv/cloud-computing.png" alt="upload">
<form action="diplomas/createCertificate.php" method="POST" enctype="multipart/form-data" >
<label class="form-container_labelupload" for="student">SUBIR CSV</label>
<input class="form-container_inputupload" type="file" name="student" id="student" accept=".csv" required>
<input class="form-container_submit" type="submit">
</form>
<?php }?>
</div>
</body>
</html>