-
Notifications
You must be signed in to change notification settings - Fork 0
/
Teacherinfo.html
37 lines (29 loc) · 1.03 KB
/
Teacherinfo.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CourseGo SHOU Teacher Info</title>
<!-- <link rel="stylesheet" href="style.css"> -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<header>
<h1 href="http://www.coursego.cn/">CourseGo</h1>
</header>
<section>
<div id="search-box">
<input v-model="message">
</div>
<div id="search-button">
<button v-on:click="search">Search!</button>
<button v-on:click="lucky">Feel Lucky?</button>
<p>Name: {{ list.name }}</p>
<p>Department: {{ list.department }}</p>
<p>Telephone: {{ list.telephone }}</p>
<p>Phone: {{ list.phone }}</p>
<p>Email: {{ list.email }}</p>
</div>
</section>
<script src="Teacherinfo.js"></script>
</body>
</html>