aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/csci4131/hw6/strap012_hw6/login.html
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2022-05-24 11:18:46 -0500
committerMatt Strapp <matt@mattstrapp.net>2022-05-24 11:19:55 -0500
commit7a73162607544204032aa66cce755daf21edebda (patch)
tree58578e01f15f34a855d99c32898db9d7a1603e67 /OLD/csci4131/hw6/strap012_hw6/login.html
parentdo some stuff (diff)
downloadhomework-7a73162607544204032aa66cce755daf21edebda.tar
homework-7a73162607544204032aa66cce755daf21edebda.tar.gz
homework-7a73162607544204032aa66cce755daf21edebda.tar.bz2
homework-7a73162607544204032aa66cce755daf21edebda.tar.lz
homework-7a73162607544204032aa66cce755daf21edebda.tar.xz
homework-7a73162607544204032aa66cce755daf21edebda.tar.zst
homework-7a73162607544204032aa66cce755daf21edebda.zip
Graduate
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'OLD/csci4131/hw6/strap012_hw6/login.html')
-rw-r--r--OLD/csci4131/hw6/strap012_hw6/login.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/OLD/csci4131/hw6/strap012_hw6/login.html b/OLD/csci4131/hw6/strap012_hw6/login.html
deleted file mode 100644
index 9bb80cc..0000000
--- a/OLD/csci4131/hw6/strap012_hw6/login.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<html>
-
-<head>
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
- <script src="https://code.jquery.com/jquery-2.2.4.min.js"integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
-</head>
-
-<body>
- <div class="jumbotron" style="background: DarkSeaGreen !important">
- <h1>Login Page</h1>
- <div id="error"></div>
- <br><br>
- <form id="myForm" name="myForm" style="list-style-type:none">
- <div>
- <label for="login">login:</label>
- <input type="text" id="login" name="login" required>
- </div>
- <div>
- <label for="password">password:</label>
- <input id="password" name="password" type="password" required>
- </div>
- <input type="submit"value="Submit!">
- </form>
- </div>
- <script>
- //jQuery below. Tread with caution as sneezing near here may rupture the fabric of reality.
- $(document).ready(function () {
- $('#myForm').submit(function (event) {
- event.preventDefault();//collect the form data using Id Selector for whatever data you need to send to server
- let login=$('#login').val();
- let password=$('#password').val();
- $.post('api/login',
- {"login": login,"password": password},
- (data) => {
- if(data.status === 'success'){
- //pseudo code
- //Make sure error message is not displayed
- //Re-direct to contacts page,
- window.location.href='contacts';}
- else{
- //Display error message
- $('#error').html("<b>Login failed. Please try again.</b>")
- }});
- });
- });</script>
-
-</html>