Add image and progress bar to widget!

Hey guys! How can I add a simple image and a progress bar on my loading screen?? I would like to create two different kind of loading screen. One when I start up the game for the first time and another one when I travel through levels, is it possible? this is my first attempt at coding, I only used blueprint so far!

#include “MyGameInstance.h”
#include “MoviePlayer.h”

void UMyGameInstance::Init()
{
Super::Init();

FCoreUObjectDelegates::PreLoadMap.AddUObject(this, &UMyGameInstance::BeginLoadingScreen);
FCoreUObjectDelegates::PostLoadMapWithWorld.AddUObject(this, &UMyGameInstance::EndLoadingScreen);
}

void UMyGameInstance::BeginLoadingScreen(const FString &InMapName)
{
if (!IsRunningDedicatedServer())
{
FLoadingScreenAttributes LoadingScreen;
LoadingScreen.bAutoCompleteWhenLoadingCompletes = false;
LoadingScreen.WidgetLoadingScreen = FLoadingScreenAttributes::NewTestLoadingScreenWidget();

GetMoviePlayer()->SetupLoadingScreen(LoadingScreen);
}
}

void UMyGameInstance::EndLoadingScreen(UWorld* InLoadedWorld)
{

}