35 lines
676 B
HTML
35 lines
676 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Easy Session Manager Import</title>
|
|
<link rel="shortcut icon" href="../images/icons/import.png">
|
|
<link rel="stylesheet" href="../styles/styles.css"/>
|
|
|
|
<style media="screen">
|
|
|
|
body, html {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0em;
|
|
margin: 0em;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container" name="import">
|
|
<h1 id="lableTag">Select File</h1>
|
|
<input id="inputId" type="file" enctype='multipart/form-data' multiple accept="application/json"/>
|
|
</div>
|
|
|
|
<span id="allertMessage">
|
|
|
|
</span>
|
|
|
|
<script src="../scripts/background.js"></script>
|
|
</body>
|
|
</html>
|