12345678910111213141516171819202122232425262728 |
- <div class="loginform">
- <form name="login" method="POST">
- <div class="url">
- <label for="url">URL</label>
- <input name="url" type="text" />
- </div>
- <div class="name">
- <label for="name">Link Name</label>
- <input name="name" type="text" />
- </div>
- <div class="description">
- <label for="description">Description</label>
- <input name="description" type="text" />
- </div>
- <div class="private">
- <label for="private">Private?</label>
- <input name="private" type="checkbox"/>
- </div>
- <div class="tags">
- <label for="tags">Tags</label>
- <input name="tags" type="text" />
- </div>
- <div class="submit">
- <input type="submit" value="Add Link"/>
- </div>
- </form>
- </div>
|