diff options
| author | Melonai <einebeere@gmail.com> | 2020-05-07 04:29:30 +0200 |
|---|---|---|
| committer | Melonai <einebeere@gmail.com> | 2020-05-07 04:29:30 +0200 |
| commit | 1e06820480fb2d9cf9db1373817d5980a891d5b4 (patch) | |
| tree | 63d0d45190f95b40f20dfd8a718a912434286db3 /client/index.html | |
| parent | 385fcdd46b536d28094a96f3f6be0e87496277a1 (diff) | |
| download | shorest-1e06820480fb2d9cf9db1373817d5980a891d5b4.tar.zst shorest-1e06820480fb2d9cf9db1373817d5980a891d5b4.zip | |
interaction between API and client
Diffstat (limited to 'client/index.html')
| -rw-r--r-- | client/index.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/client/index.html b/client/index.html index a8aa831..5b8459e 100644 --- a/client/index.html +++ b/client/index.html @@ -2,9 +2,11 @@ <html lang="en"> <head> <meta charset="UTF-8"> - <title>Shor</title> - <link rel="stylesheet" href="main.css"> - <script src="main.js"></script> + <title>Shorest</title> + <link rel="stylesheet" href="static/main.css"> + <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/validate.js/0.13.1/validate.min.js"></script> + <script src="static/main.js"></script> </head> <body> <div class="active"> @@ -12,11 +14,11 @@ <a><b>sho.rest</b><br></a> <a>Made with ❤ by <b>Mel</b></a> </div> - <form class="form-inline" onsubmit="onFormSubmit(); return false;"> + <form id="form"> <div class="input-group" id="form-group"> <div class="input-container"> <a class="input-field-text">https://</a> - <input oninput="inputUpdate()" pattern="(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?" class="input-field" id="url" required> + <input class="input-field" id="url" required> </div> <div class="btn-container"> <input type="submit" value="→" class="btn"> |
