Serviox19 / To-do-list

To do list, uses jQuery, JavaScript, and other elements
0 stars 0 forks source link

Nice Job! #1

Open albertbahia opened 8 years ago

albertbahia commented 8 years ago

Nice job with the homework. One suggestion would be to clear the input after you add a to-do item.

Things to note:

<body>

  <nav class="navbar navbar-default">
    <div class="container-fluid">
      <div class="navbar-header">
        <a class="navbar-brand" href="#">
          <img alt="Brand" src="images/checklist.png">
        </a>
      </div>
        <h3>Organize Your Everyday Tasks!</h3>
    </div>
  </nav> <!-- END NAV -->

  <div class="container-fluid">
    <div class="row-fluid">
      <div class="col-md-1"></div>
      <div class="col-md-7">
        <table class="table table-hover table-bordered">
           <thead>
             <tr class="header">
              <td>Task-to-Do</td>
              <td>Delete</td>
              <td>Done ?</td>
             </tr>
           </thead>
           <tbody>

           </tbody>
        </table>
      </div>

      <div class="col-md-3 aside">
        <div class="panel panel-primary">
        <div class="panel-heading">
          <h3 class="panel-title">Add New Task</h3>
        </div><!-- END PANEL HEADING -->
        <div class="panel-body">
          <div class="well">
              <form>
                <textarea class="form-control" rows="3" id="newWord">

                </textarea>
              </form> <br />
            <div class="button-holder">
              <button type="submit" class="btn btn-success"><span class="glyphicon glyphicon-pushpin" aria-hidden="true"></span></button>
            </div>
          </div><!-- END WELL-->
        </div> <!-- END PANEL BODY -->

      </div><!-- CLOSE PANEL -->
      </div><!-- CLOSE COLUMN -->

    </div><!-- END ROW -->

  </div><!-- END CONTAINER -->

  <!-- JavaScript and jQuery -->
  <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
  <script type="text/javascript" src="js/index.js"></script>
</body>
Serviox19 commented 8 years ago

Thanks for the input. I was going to fix the text box to make it clear but I just never went back to it. But as for the indentation, I think that's something with Git because on my pc it does not look like that.

On Saturday, November 28, 2015, Albert Bahia notifications@github.com wrote:

Nice job with the homework. One suggestion would be to clear the input after you add a to-do item.

Things to note:

```
Task-to-Do Delete Done ?

Add New Task


```

— Reply to this email directly or view it on GitHub https://github.com/Serviox19/To-do-list/issues/1.