Skip to content

Commit

Permalink
P2 first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Macro21 committed Mar 24, 2018
1 parent b3f724a commit 7dfabe1
Show file tree
Hide file tree
Showing 16 changed files with 21,803 additions and 0 deletions.
44 changes: 44 additions & 0 deletions Practica 2/index.html
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>
14 changes: 14 additions & 0 deletions Practica 2/package.json
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"
}
}
Loading

0 comments on commit 7dfabe1

Please sign in to comment.