-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatic.html
More file actions
59 lines (53 loc) · 3.08 KB
/
Copy pathStatic.html
File metadata and controls
59 lines (53 loc) · 3.08 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>수강신청 시스템</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<style>
html, body {
height: 100%;
}
.container-center {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
</style>
</head>
<body>
<div class="container-center">
<h1 class="mb-4">수강신청 시스템</h1>
<button onclick="location.href='Main.php'" class="btn btn-primary mb-4">수강신청 시스템 접속</button>
<div class="alert alert-info">
※ [필독] 수강신청 시스템 사용자 메뉴얼 <br>
※※ 수강신청 시간 : 10:00 ~ 17:00 <br>
수강신청 시스템은 PC용 브라우저 사용을 권장합니다. <br>
※ 학생 아이디는 학번, 비밀번호는 통합로그인 비밀번호(종합정보, 홈페이지 동일) 입니 다. <br>
※ 신입생 비밀번호 안내 <br>
- 통합로그인 비밀번호를 변경하지 않은 학생의 초기 비밀번호는 주민등록번호 앞자리(6 자리) 입니다. <br>
※ 수강관련 문의 사항은 학사지원팀으로 문의하시기바랍니다. <br>
- 자연캠퍼스 학사지원팀 : 031-330-6023 <br>
- 인문캠퍼스 학사지원팀 : 02-300-1473 <br>
※ 프로그램 사용관련 문의 사항은 자연 정보지원팀(031-330-6731)으로 문의하시기바랍니 다. <br>
▣ PASSWORD 관리 철저 <br>
타인의 ID와 PASSWORD를 도용하여 타 학생의 수강신청 과목을 삭제 하는 등 피해를 주는 사건이 <br>
발생하여 해당 학생을 징계처리한 사례가 있어 안내 드리니 본인의 PASSWORD 관리를 철저히 하시기 바랍니다. <br>
□ 매크로프로그램이용 수강신청 제한 <br>
수강신청시 매크로프로그램 등을 비롯한 유해 프로그램을 이용하여 수강신청 할 경우 학 교 수강신청 <br>
서버의 속도 저하 또는 장애를 유발시켜 대다수의 많은 학생들게 피해를 주는 관계로 매 크로 프로그램 <br>
이용하여 수강신청하는 학생이 발견될 경우 해당 학생의 수강신청 내역 전체를 삭제 예정이니 <br>
유의 하시기 바랍니다.
</div>
</div>
<!-- Bootstrap JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.0.7/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</body>
</html>