Skip to content

Commit 71e7c72

Browse files
authored
Merge pull request #2795 from uw-it-aca/qa
Qa
2 parents bd931ff + 3de2342 commit 71e7c72

File tree

9 files changed

+247
-144
lines changed

9 files changed

+247
-144
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<table border="1" width="100%">
2+
<tr BGCOLOR="#d0d0d0"><th>Check Your Application Information</th></tr>
3+
</table>
4+
<br>For information on your returning student application to the UW Tacoma, please contact the UW Tacoma Registrar's Office. <br>&nbsp;

myuw_vue/components/home/applicant/seattle.vue

+9-13
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,22 @@
2323
<a v-out="'Contact Registrar Office'" href="mailto:[email protected]">[email protected]</a>
2424
</div>
2525
</div>
26-
<div class="row">
27-
<div class="col">Phone</div>
28-
<div class="col">(206) 543-4000</div>
29-
</div>
3026
<div class="row">
3127
<div class="col">Location</div>
32-
<div class="col">225 Schmitz Hall</div>
28+
<div class="col">2nd Floor Schmitz Hall</div>
3329
</div>
3430
</div>
3531

3632
<h3 class="h6 myuw-font-encode-sans">Registration for returning student</h3>
37-
<p>
38-
If readmitted, you must
39-
<a href="https://sdb.admin.uw.edu/enroll/">confirm your enrollment</a> prior to being able
40-
to register.
33+
<p class="myuw-text-md">
34+
You must
35+
<a href="https://sdb.admin.uw.edu/enroll/uwnetid/">confirm your enrollment</a>
36+
and pay the enrollment fee prior to being able to register.
4137
</p>
42-
<p>
43-
You may register during the Registration Period II of your quarter of readmittance. Check
44-
dates in the
45-
<a href="http://www.washington.edu/students/reg/calendar.html">Academic calendar</a>.
38+
<p class="myuw-text-md">
39+
You will then register beginning with Registration Period II for your returning quarter.
40+
Check dates on the
41+
<a href="http://www.washington.edu/students/reg/calendar.html">Academic Calendar</a>.
4642
</p>
4743

4844
<h3 class="h6 myuw-font-encode-sans">Resources for Seattle applicants</h3>

myuw_vue/components/home/graduation/application-submitted.vue

+81
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,87 @@
318318
your future or anything else, connect with a counselor.
319319
</li>
320320
</ul>
321+
<h3 class="h6 myuw-font-encode-sans mb-3">
322+
Related Husky Experience Toolkit Articles
323+
</h3>
324+
<div class="myuw-text-md"
325+
:class="[$mq == 'desktop' ? 'd-flex justify-content-between' : '']"
326+
>
327+
<div class="d-flex" :class="[$mq == 'desktop' ? 'flex-column pe-4 mb-0' : 'mb-3']">
328+
<div class="border border-secondary" :class="[$mq != 'desktop' ? 'w-50' : '']">
329+
<a
330+
:href="'/husky_experience_message?article=' +
331+
'how-professional-job-different-being-student'"
332+
>
333+
<img
334+
class="img-fluid"
335+
:src="'/static/hx_toolkit_output/images/' +
336+
'How_Professional_Job_Different_From_Student_480.jpg'"
337+
alt="Urban planning student documenting observations in a downtown Seattle park."
338+
>
339+
</a>
340+
</div>
341+
<div :class="[$mq != 'desktop' ? 'w-50 ps-3' : 'pt-2']">
342+
<a
343+
:href="'/husky_experience_message?article=' +
344+
'how-professional-job-different-being-student'"
345+
>
346+
How a Professional Job is Different from Being a Student
347+
</a>
348+
<br>
349+
<p class="fst-italic">2 min read</p>
350+
</div>
351+
</div>
352+
<div class="d-flex" :class="[$mq == 'desktop' ? 'flex-column px-4 mb-0' : 'mb-3']">
353+
<div class="border border-secondary" :class="[$mq != 'desktop' ? 'w-50' : '']">
354+
<a
355+
href="/husky_experience_message?article=preparing-professional-life"
356+
>
357+
<img
358+
class="img-fluid"
359+
src="/static/hx_toolkit_output/images/preparing_for_professional_life_480.jpg"
360+
alt="Student and his mentor working together in a UW Health Sciences lab."
361+
>
362+
</a>
363+
</div>
364+
<div :class="[$mq != 'desktop' ? 'w-50 ps-3' : 'pt-2']">
365+
<a
366+
href="/husky_experience_message?article=preparing-professional-life"
367+
>
368+
Preparing for a Professional Life
369+
</a>
370+
<br>
371+
<p class="fst-italic">2 min read</p>
372+
</div>
373+
</div>
374+
<div class="d-flex"
375+
:class="[$mq == 'desktop' ? 'flex-column px-4 mb-0' : 'mb-3']"
376+
>
377+
<div class="border border-secondary"
378+
:class="[$mq != 'desktop' ? 'w-50' : '']">
379+
<a
380+
href="/husky_experience_message?article=between-college-and-career"
381+
>
382+
<img
383+
class="img-fluid"
384+
src="/static/hx_toolkit_output/images/Between_College_Career_480.jpg"
385+
:alt="'Person seated on rock ledge above a ' +
386+
'road that curves away in opposite directions.'"
387+
>
388+
</a>
389+
</div>
390+
<div :class="[$mq != 'desktop' ? 'w-50 ps-3' : 'pt-2']">
391+
<a
392+
href="/husky_experience_message?article=between-college-and-career"
393+
>
394+
Between College and Career
395+
</a>
396+
<br>
397+
<p class="fst-italic">2 min read</p>
398+
</div>
399+
</div>
400+
</div>
401+
321402
</uw-collapse>
322403
</template>
323404
<template #card-footer>
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,61 @@
11
<template>
22
<div>
3-
<h3 class="h6 text-dark-beige myuw-font-encode-sans">
4-
Visa and Immigration Rules
5-
</h3>
3+
<h3 class="h6 text-dark-beige myuw-font-encode-sans">ISSS Portal</h3>
4+
<p class="myuw-text-md">
5+
Use ISSS Portal to create requests, maintain your immigration record, report required
6+
immigration information to the U.S. government, and get critical updates about visa status.
7+
<br />
8+
<uw-link-button class="mt-2 mb-1" href="https://isss.tacoma.uw.edu/">
9+
Go to ISSS Portal
10+
</uw-link-button>
11+
</p>
12+
<h3 class="h6 text-dark-beige myuw-font-encode-sans">Visa and Immigration Rules</h3>
613

714
<ul class="list-unstyled myuw-text-md">
815
<li class="mb-1">
9-
<a
10-
href="http://www.uwb.edu/cie/current-students/travel"
11-
>Travel and Visas</a>
16+
<a href="http://www.uwb.edu/cie/current-students/travel">Travel and Visas</a>
1217
</li>
1318
<li class="mb-1">
14-
<a
15-
href="https://www.uwb.edu/cie/current-students/immigration-documents"
16-
>Immigration Document for F-1 Students</a>
19+
<a href="https://www.uwb.edu/cie/current-students/immigration-documents"
20+
>Immigration Document for F-1 Students</a
21+
>
1722
</li>
1823
<li class="mb-1">
19-
<a
20-
href="https://www.uwb.edu/cie/current-students/vacation-quarter"
21-
>Vacation Quarter</a>
24+
<a href="https://www.uwb.edu/cie/current-students/vacation-quarter">Vacation Quarter</a>
2225
</li>
2326
<li class="mb-1">
24-
<a
25-
href="http://www.uwb.edu/cie/employment"
26-
>Employment and Internships</a>
27+
<a href="http://www.uwb.edu/cie/employment">Employment and Internships</a>
2728
</li>
2829
<li class="mb-1">
29-
<a
30-
href="https://www.uwb.edu/cie/events"
31-
>Center for International Education (CIE) Calendar</a>
30+
<a href="https://www.uwb.edu/cie/events"
31+
>Center for International Education (CIE) Calendar</a
32+
>
3233
</li>
3334
</ul>
3435

35-
<h3 class="h6 text-dark-beige myuw-font-encode-sans">
36-
Academic Support
37-
</h3>
36+
<h3 class="h6 text-dark-beige myuw-font-encode-sans">Academic Support</h3>
3837
<ul class="list-unstyled myuw-text-md mb-2">
3938
<li class="mb-1">
40-
<a
41-
href="http://www.uwb.edu/cie/current-students/writing-support"
42-
>Writing Support and Resources</a>
39+
<a href="http://www.uwb.edu/cie/current-students/writing-support"
40+
>Writing Support and Resources</a
41+
>
4342
</li>
4443
<li class="mb-1">
45-
<a
46-
href="http://www.uwb.edu/wacc"
47-
>Writing and Communication Center (WaCC)</a>
44+
<a href="http://www.uwb.edu/wacc">Writing and Communication Center (WaCC)</a>
4845
</li>
4946
<li>
50-
<a
51-
href="https://www.uwb.edu/qsc"
52-
>Quantitative Skills Center (QSC)</a>
47+
<a href="https://www.uwb.edu/qsc">Quantitative Skills Center (QSC)</a>
5348
</li>
5449
</ul>
5550
</div>
5651
</template>
5752

5853
<script>
59-
export default {};
54+
import LinkButton from '../../_templates/link-button.vue';
55+
56+
export default {
57+
components: {
58+
'uw-link-button': LinkButton,
59+
},
60+
};
6061
</script>

myuw_vue/components/home/international/seattle.vue

+39-45
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,81 @@
11
<template>
22
<div>
3-
<h3 class="h6 text-dark-beige myuw-font-encode-sans">
4-
Visa and Immigration Rules
5-
</h3>
3+
<h3 class="h6 text-dark-beige myuw-font-encode-sans">MyISSS</h3>
4+
<p class="myuw-text-md">
5+
Use MyISSS to create requests, maintain your immigration record, report required immigration
6+
information to the U.S. government, and get critical updates about visa status. <br />
7+
<uw-link-button class="mt-2 mb-1" href="https://isss.uw.edu/"> Go to MyISSS </uw-link-button>
8+
</p>
9+
10+
<h3 class="h6 text-dark-beige myuw-font-encode-sans">Visa and Immigration Rules</h3>
611
<ul class="list-unstyled myuw-text-md">
712
<li class="mb-1">
8-
<a
9-
v-out="'ISS: Travel and Visas'"
10-
href="https://iss.washington.edu/travel-visas/"
11-
>Travel and Visas</a>
13+
<a v-out="'ISS: Travel and Visas'" href="https://iss.washington.edu/travel-visas/"
14+
>Travel and Visas</a
15+
>
1216
</li>
1317
<li class="mb-1">
14-
<a
15-
v-if="visaJ1"
16-
href="https://iss.washington.edu/regulations/j1/"
17-
>Visa and Immigration Rules for J-1 students</a>
18-
<a
19-
v-else
20-
href="https://iss.washington.edu/regulations/f1/"
21-
>Visa and Immigration Rules for F-1 students</a>
18+
<a v-if="visaJ1" href="https://iss.washington.edu/regulations/j1/"
19+
>Visa and Immigration Rules for J-1 students</a
20+
>
21+
<a v-else href="https://iss.washington.edu/regulations/f1/"
22+
>Visa and Immigration Rules for F-1 students</a
23+
>
2224
</li>
2325
<li class="mb-1">
2426
<a
2527
v-out="'ISS: Frequently Asked Questions'"
2628
href="https://iss.washington.edu/new-students/faq/"
27-
>Frequently Asked Questions (FAQ)</a>
29+
>Frequently Asked Questions (FAQ)</a
30+
>
2831
</li>
2932
<li class="mb-1">
30-
<a
31-
v-out="'ISS: Student Employment'"
32-
href="https://iss.washington.edu/employment/"
33-
>Employment and Internships</a>
33+
<a v-out="'ISS: Student Employment'" href="https://iss.washington.edu/employment/"
34+
>Employment and Internships</a
35+
>
3436
</li>
3537
<li class="mb-1">
36-
<a
37-
href="https://www.trumba.com/calendars/sea_enroll-iss"
38-
>Deadlines and Workshops Calendar</a>
38+
<a href="https://www.trumba.com/calendars/sea_enroll-iss"
39+
>Deadlines and Workshops Calendar</a
40+
>
3941
</li>
4042
</ul>
4143

42-
<h3 class="h6 text-dark-beige myuw-font-encode-sans">
43-
Academic Support
44-
</h3>
44+
<h3 class="h6 text-dark-beige myuw-font-encode-sans">Academic Support</h3>
4545
<ul class="list-unstyled myuw-text-md">
4646
<li class="mb-1">
47-
<a
48-
href="http://depts.washington.edu/aspuw/clue/home/"
49-
>Center for Learning and Undergraduate Enrichment (CLUE)</a>
47+
<a href="http://depts.washington.edu/aspuw/clue/home/"
48+
>Center for Learning and Undergraduate Enrichment (CLUE)</a
49+
>
5050
</li>
5151
<li class="mb-1">
52-
<a
53-
href="http://depts.washington.edu/owrc"
54-
>Odegaard Writing and Research Center</a>
52+
<a href="http://depts.washington.edu/owrc">Odegaard Writing and Research Center</a>
5553
</li>
5654
<li class="mb-1">
57-
<a
58-
href="http://aep.washington.edu/"
59-
>Academic English Program</a>
55+
<a href="http://aep.washington.edu/">Academic English Program</a>
6056
</li>
6157
</ul>
6258

63-
<h3 class="h6 text-dark-beige myuw-font-encode-sans">
64-
Social Events
65-
</h3>
59+
<h3 class="h6 text-dark-beige myuw-font-encode-sans">Social Events</h3>
6660
<ul class="list-unstyled myuw-text-md mb-2">
6761
<li class="mb-1">
68-
<a
69-
href="https://www.washington.edu/circle/calendar/"
70-
>CIRCLE Events Calendar</a>
62+
<a href="https://www.washington.edu/circle/calendar/">CIRCLE Events Calendar</a>
7163
</li>
7264
<li>
73-
<a
74-
href="http://www.fiuts.org/events"
75-
>FIUTS Event Calendar</a>
65+
<a href="http://www.fiuts.org/events">FIUTS Event Calendar</a>
7666
</li>
7767
</ul>
7868
</div>
7969
</template>
8070

8171
<script>
82-
import {mapState} from 'vuex';
72+
import { mapState } from 'vuex';
73+
import LinkButton from '../../_templates/link-button.vue';
8374
8475
export default {
76+
components: {
77+
'uw-link-button': LinkButton,
78+
},
8579
computed: mapState({
8680
visaJ1: (state) => state.user.affiliations.J1,
8781
}),

0 commit comments

Comments
 (0)