-
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
1 parent
6bd1cf0
commit eae8d0a
Showing
8 changed files
with
22 additions
and
46 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
body { | ||
background-color: lightblue; | ||
background-color: TODO; | ||
} |
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 |
---|---|---|
@@ -1,20 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-US"> | ||
<head> | ||
<title>Shape Tracker</title> | ||
<title>TODO</title> | ||
</head> | ||
<body> | ||
<h3>Enter three lengths to determine if they can make a triangle.</h3> | ||
<form id="triangle-checker-form"> | ||
<label for="length1">Enter a number:</label> | ||
<input id="length1" type="number"> | ||
<label for="length2">Enter a number:</label> | ||
<input id="length2" type="number"> | ||
<label for="length3">Enter a number:</label> | ||
<input id="length3" type="number"> | ||
<form id="TODO"> | ||
<label for="TODO">TODO:</label> | ||
<input id="TODO" type="TODO"> | ||
<button type="submit">Submit</button> | ||
</form> | ||
<ul id="response"></ul> | ||
<li>test one two three</li> | ||
<li></li> | ||
</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,11 @@ | ||
import $ from 'jquery'; | ||
import 'bootstrap'; | ||
import 'bootstrap/dist/css/bootstrap.min.css'; | ||
import './css/styles.css'; | ||
|
||
$(document).ready(function() { | ||
$('#TODO-form').submit(function(event) { | ||
event.preventDefault(); | ||
|
||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
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