-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
21,803 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>ID3</title> | ||
|
||
<!-- Jquery --> | ||
<script src = "public/javascripts/jquery-3.2.1.min.js" type="text/javascript" ></script> | ||
<!--Bootstrap scripts --> | ||
<script src = "public/javascripts/bootstrap.bundle.js" type="text/javascript" ></script> | ||
<script src = "public/javascripts/bootstrap.js" type="text/javascript" ></script> | ||
<script src = "public/javascripts/bootstrap.js.map" type="text/map" ></script> | ||
<!--Bootstrap css --> | ||
<link rel='stylesheet' href='public/stylesheets/bootstrap-grid.css' /> | ||
<link href='public/stylesheets/bootstrap-grid.css.map' /> | ||
<link rel='stylesheet' href='public/stylesheets/bootstrap-reboot.css' /> | ||
<link href='public/stylesheets/bootstrap-reboot.css.map' /> | ||
<link rel='stylesheet' href='public/stylesheets/bootstrap.css' /> | ||
<link href='public/stylesheets/bootstrap.css.map' /> | ||
<!--My scripts --> | ||
<script src = "public/javascripts/reader.js" type="text/javascript" ></script> | ||
<script src = "public/javascripts/index.js" type="text/javascript" ></script> | ||
<!-- My css --> | ||
<link rel='stylesheet' href='public/stylesheets/style.css' /> | ||
</head> | ||
<body> | ||
<div class = "container"> | ||
<div id = "titleDiv"> | ||
<h1 id = "title">ID3</h1> | ||
<h3 id = "name">Andrei Ionut Vaduva</h3> | ||
</div> | ||
<hr class = "hrStyle"></hr> | ||
<div class="row justify-content-center align-items-center"> | ||
<label for="dataFile" id="dataFileLbl" class = "fileLbl" >Choose data file</label> | ||
<input id= "dataFile" type="file" onchange="dataReader(event)"> | ||
|
||
<label for="attrFile" id = "attrFileLbl" class = "fileLbl" >Choose attrributes file</label> | ||
<input type="file" id = "attrFile" onchange="attributesReader(event)"> | ||
</div> | ||
<hr class = "hrStyle"></hr> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "practica-2", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Andrei Ionut Vaduva", | ||
"license": "ISC", | ||
"dependencies": { | ||
"file-system": "^2.2.2" | ||
} | ||
} |
Oops, something went wrong.