Advertisement
Guest User

Untitled

a guest
May 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.80 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <style>
  4.         .bordered{
  5.             margin-top: 2px;
  6.             border-bottom-style: solid;
  7.             border-color: #e0e0d1;
  8.         }
  9.  
  10.         .field{
  11.             margin-top: 50px;
  12.             font-kerning: normal;
  13.             font-family: "Lucida Sans Unicode";
  14.         }
  15.  
  16.         .title-chap{
  17.             font-family: "Verdana";
  18.         }
  19.  
  20.         .button {
  21.             background-color: #e7e7e7;
  22.             border-style: solid;
  23.             border-color: black;
  24.             border-radius: 10px;
  25.             color: black;
  26.             padding: 10px 15px;
  27.             text-align: center;
  28.             text-decoration: none;
  29.             display: inline-block;
  30.             font-size: 15px;
  31.             margin: 4px 2px;
  32.             cursor: pointer;
  33.         }
  34.     </style>
  35.     <script scr="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  36.     <title>Ler nje koment</title>
  37. </head>
  38.  
  39. <body>
  40.  
  41.     <div class="bordered" id="title-head">
  42.         <h2 class="title-chap">Shkruaj nje koment</h2>
  43.     </div>
  44.     <div id="comment-form">
  45.         <label class="field">Emri:</label><br />
  46.         <input type="text" id="emri" /> <br />
  47.  
  48.         <label class="field">Email:</label><br />
  49.         <input type="text" id="email" /><br />
  50.  
  51.         <label class="field">Komenti:</label><br />
  52.         <input type="textarea" id="koment" /><br />
  53.  
  54.         <input type="button" value="Dergo" class="button" id="drg_btn"/><br />
  55.         <br />
  56.         <label id="result"></label>
  57.  
  58.         <script>
  59.                 $(document).ready(function(){
  60.                     $("#drg_btn").click(komento());
  61.                 });
  62.    
  63.                 function komento()
  64.                 {
  65.                     var res = "Komenti u postua!";
  66.                     if($("#emri").val().length == 0){
  67.                         res = "Shkruaj emrin sakte.";
  68.                     }
  69.                     if(!$("#email").val().includes("@")){
  70.                         res = "Shkruaj email-in ne formatin e duhur!";
  71.                     }
  72.                     if($("#koment").val().length == 0)
  73.                     {
  74.                         res = "Duhet te bashkengjitesh nje koment!";
  75.                     }
  76.                     $("#result").html(res);
  77.                 }
  78.             </script>
  79.        
  80.     </div>
  81. </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement