Skip to content

Instantly share code, notes, and snippets.

@tony1223
Created October 12, 2012 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tony1223/3879744 to your computer and use it in GitHub Desktop.
Save tony1223/3879744 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html >
<head>
<meta charset="utf-8">
<title>發文系統 - 會員註冊</title>
<link rel="stylesheet" href="<?=base_url("/css/bootstrap.min.css")?>">
<link rel="stylesheet" href="<?=base_url("/css/bootstrap-responsive.min.css")?>">
</head>
<body>
<div class="container">
<table class="table table-bordered">
<tr>
<td>
Account
</td>
<td>
<input type="text" name="account" />
</td>
</tr>
<tr>
<td>
Password
</td>
<td>
<input type="password" name="password" />
</td>
</tr>
<tr>
<td>
Re-type Password
</td>
<td>
<input type="password" name="passwordrt" />
</td>
</tr>
<tr>
<td colspan="2">
<input class="btn" type="submit" value="送出" />
</td>
</tr>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment