OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-13 4545664bbece1b1b185945376b344b1660669a53
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<div class="formModal">
    <div class="modal-header faded smaller">
        <div class="modal-title">
            <strong translate="users.modifyInformation">정보 수정</strong>
        </div>
        <button aria-label="Close" class="close" data-dismiss="modal" type="button" ng-click="fn.cancel()"><span
                aria-hidden="true"> &times;</span></button>
    </div>
 
    <div class="modal-body">
        <form role="form" name="userModifyForm">
            <div class="row">
                <div class="col-sm-6">
                    <div class="form-group">
                        <label for="userModifyForm1"> <span translate="common.name">이름</span> <code class="highlighter-rouge">*</code></label>
                        <input class="form-control"
                               id="userModifyForm1"
                               type="text"
                               required
                               maxLength="10"
                               ng-model="vm.form.name"
                               kr-input>
                    </div>
                </div>
                <div class="col-sm-6">
                    <div class="form-group">
                        <label for="userModifyForm2"><span translate="common.email">이메일</span> <code class="highlighter-rouge">*</code></label>
                        <input class="form-control" id="userModifyForm2" type="text" ng-model="vm.form.account"
                               disabled>
                        <small class="fc-grey" translate="common.emailCannotBeChanged">이메일은 변경할 수 없습니다.</small>
                    </div>
                </div>
            </div>
 
            <div ng-show="vm.form.projectManagerYN" class="row">
                <div class="col-sm-6">
                    <div class="form-group">
                        <label for="userModifyForm3"><span translate="users.setEmailNotificationTime">이메일 알림 시간 설정</span>
                            <!--<code class="highlighter-rouge">*</code>-->
                        </label>
                        &nbsp;&nbsp;
                        <input class="form-control"
                               type="checkbox"
                               ng-model="vm.form.realtimeNotify"> 실시간 알림
                        <input class="form-control"
                               type="text"
                               id="userModifyForm3"
                               date-time-picker
                               option="Y"
                               ng-disabled="vm.form.realtimeNotify"
                               placeholder="이메일 알림 시간을 설정해주세요."
                               ng-model="vm.form.reservationNotifyTime">
                    </div>
                </div>
 
                <div class="col-sm-6">
                    <div class="form-group">
                        <label for="userModifyForm4"><span translate="users.phoneNumber">연락처</span> </label>
                        <input class="form-control"
                               type="text"
                               id="userModifyForm4"
                               maxLength="11"
                               kr-input
                               input-regex="[^0-9]"
                               autocomplete="off"
                               ng-model="vm.form.phone">
                        <small class="fc-grey" translate="users.contactedEnterPhone">연락가능한 핸드폰 번호를 입력하세요.</small>
                    </div>
                </div>
            </div>
 
            <div class="form-group">
                <label for="userModifyForm5"> <span translate="common.profilePicture">프로필 사진</span> </label>
                <small class="fc-grey" translate="users.selectProfileShowOther">다른 사용자들에게 보여줄 프로필을 선택하세요.</small>
                <div class="filebox input-group">
                    <input class="upload-name form-control"
                           placeholder="{{'users.pleaseSelectFile' | translate}}"
                           disabled="disabled"
                           ng-model="vm.form.profileImageName">
                    <label for="userModifyForm5"><span translate="common.selectFile">파일선택</span></label>
                    <input type="file"
                           id="userModifyForm5"
                           class="form-control"
                           accept=".jpg, .png"
                           ng-file-select="fn.onFileSelect($files)">
                </div>
            </div>
            <div class="row">
                <div class="col-sm-12">
                    <label> <span translate="users.membershipWithdrawal">회원탈퇴</span> </label>
                    <small class="fc-grey" translate="users.signOutNotRecovered">회원 탈퇴 시 업무 공간의 모든 데이터가 사라지고 복구할 수 없습니다. </small>
                    <div>
                        <button type="button" class="btn btn-secondary" ng-click="fn.withDraw()"><span translate="users.membershipWithdrawal">회원탈퇴</span></button>
                    </div>
                </div>
            </div>
        </form>
    </div>
 
    <div class="modal-footer buttons-on-right">
        <button type="button" class="btn btn-md btn-grey" ng-click="fn.cancel()"><span translate="common.cancel">취소</span></button>
        <button type="button" class="btn btn-md btn-primary bold"
                js-short-cut
                js-short-cut-action="(fn.formCheck(userModifyForm.$invalid) || $root.spinner) ? null : fn.formSubmit()"
                ng-disabled="fn.formCheck(userModifyForm.$invalid)"
                ng-click="fn.formSubmit()"><span translate="common.save">저장</span>
        </button>
    </div>
</div>