\documentclass{ucsdreport}
\graphicspath{{./images/}}
%************************************************************
% ABOUT THIS HOMEWORK
\def\course{Course \#: Course Title}      %Course
\def\thetitle{Report Title}               % Report Title
\def\Headauthor{last name et al.}         % Header Authors of work
\def\date{\today}                         % Date
% DOCUMENT START
\begin{document}
% TITLE PAGE
\begin{center}
    \vspace*{1.5cm}
    % University Logo
    \includegraphics[scale = 0.10]{UCSDseal.png}\\[1.75cm]
    % University Name
    \textsc{\color[RGB]{0, 51, 102}\LARGE{University of California San Diego}}\\[1cm]
    \textsc{\Large{\course}}\\[.5cm]
    \textsc{\Large{\thetitle}}\\[.5cm]
    \textsc{\date}\\[2cm]
    \Large{
    \begin{tabular}{L{4cm} R{4cm}}
        \textit{Author} &  \textit{Student ID}\\
        \hline
        % author names and PID
        Author 1 & A123\\
        Author 2 & A456
    \end{tabular}
    }
\end{center}
\thispagestyle{empty}
\pagebreak
% TABLE OF CONTENTS
\tableofcontents{}
\pagebreak
% REPORT START
\section*{Background}
\addcontentsline{toc}{section}{Background}
% Section 1
\section{Section 1}
%************************************************************
\end{document}