File size: 1,860 Bytes
f8a02cf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>
<head>
	<title>Student Facility Use for NIL Promotions</title> 
	<style>
		table {
			width:100%;
			border:2px solid #000000;
			padding:5px;
		}
		table th {
			border:2px solid #000000;
			padding:5px;
			background: #f0f0f0;
			color: #000000;
		}
		table td {
			border:2px solid #000000;
			text-align:left;
			padding:5px;
			background: #ffffff;
			color: #000000;
		}
	</style>
</head>
<body>
	<table>
		<thead>
			<tr>
				<th>School Name</th>
				<th>Can students use for free or rent facilities for NIL promotions?</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>University of Colorado</td>
				<td>No, engagements must not require the student athlete to use school housing, facilities, or equipment, not including uniforms. Also, students cannot rent school facilities.</td>
			</tr>
			<tr>
				<td>Long Beach State Athletics</td>
				<td>No, engagements must not require the student athlete to use school housing, facilities, or equipment, not including uniforms. However, the student athlete may rent school facilities.</td>
			</tr>
			<tr>
				<td>Auburn University</td>
				<td>No, engagements must not require the student athlete to use school housing, facilities, or equipment, not including uniforms. However, the student athlete may rent school facilities.</td>
			</tr>
		</tbody>
	</table>

	<h2>Additional Questions:</h2>
	<ol>
		<li>What types of compensation are allowed for NIL activities at each school?</li>
		<li>Are there any restrictions on the use of school trademarks and licensing in NIL activities?</li>
		<li>What are the prohibited industries, product categories, and products for NIL engagements at each school?</li>
		<li>Are student athletes allowed to identify themselves as athletes in NIL activities?</li>
		<li>Are booster agreements permitted at each school?</li>
	</ol>
</body>
</html>