-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuserEmail.php
70 lines (64 loc) · 2.13 KB
/
userEmail.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
include('template/init.php');
include('template/function.php');
?><!DOCTYPE html>
<html lang="zh">
<head>
<?php include('template/head.php'); ?>
</head>
<body>
<?php include('template/menu.php'); ?>
<br />
<div class="container marketing">
<div class="row">
<div class="col-lg-12">
<br>
<br>
<br>
<div class="row">
<div class="col-lg-2">
<?php include('template/sidebar.php'); ?>
</div>
<div class="col-lg-10">
<br>
<br>
<br>
<legend>註冊</legend>
<form class="form-horizontal">
<fieldset>
<div class="form-group">
<label for="inputeduEmail" class="col-lg-2 control-label">學校信箱</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputeduEmail" placeholder="example@xxx.edu.tw">
</div>
</div>
<div class="form-group">
<label for="inputEmail" class="col-lg-2 control-label">個人信箱</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputEmail" placeholder="example@gmail.com">
</div>
</div>
<div class="form-group">
<div class="pull-right">
<button type="submit" class="btn btn-primary">提交</button>
<button class="btn btn-default">取消</button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
<hr>
<footer>
<p>© Company 2013</p>
</footer>
</div>
<!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>