diff --git a/productMods/templates/freemarker/edit/forms/addAuthorsToInformationResource.ftl b/productMods/templates/freemarker/edit/forms/addAuthorsToInformationResource.ftl
new file mode 100644
index 00000000..c82f3cdd
--- /dev/null
+++ b/productMods/templates/freemarker/edit/forms/addAuthorsToInformationResource.ftl
@@ -0,0 +1,120 @@
+<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
+
+<#-- Custom form for adding authors to information resources -->
+
+<#import "lib-vivo-form.ftl" as lf>
+
+<#assign title="${infoResourceName}" />
+<#assign requiredHint=" *" />
+<#assign initialHint="(initial okay)" />
+
+<@lf.unsupportedBrowser>
+
+
${title}
+
+
+
+
+
+<#list authors as author>
+
+ <#-- span.author will be used in the next phase, when we display a message that the author has been
+ removed. That text will replace the a.authorName, which will be removed. -->
+
+ <#-- This span is here to assign a width to. We can't assign directly to the a.authorName,
+ for the case when it's followed by an em tag - we want the width to apply to the whole thing. -->
+
+ <#if author <#---->>
+ <#assign authorUri=author.URI />
+ <#assign authorName=author.name />
+ <#assign authorHref="/individual" />
+ <#-- I don't know how to "translate"" this in to freemarker -->
+ ${authorName}
+ <#else>
+ <#assign authorUri="" />
+ <#assign authorName="" />
+ <#assign authorHref="/individual" />
+ <#-- I don't know how to "translate" this in to freemarker -->
+ ${authorshipName} (no linked author)
+ #if>
+
+
+ <#assign deleteAuthorshipHref="/edit/primitiveDelete" />
+ Remove
+
+
+
+
+#list>
+
+ <#--// A new author will be ranked last when added.
+ // This value is now inserted by JavaScript, but leave it here as a safety net in case page
+ // load reordering returns an error.
+ request.setAttribute("newRank", maxRank + 1);
+ request.setAttribute("rankPredicate", rankPredicateUri);-->
+
+
+
+
+
+
+
+ or
+ Return to Publication
+
+
+
+
+
+
+${stylesheets.add('',
+ '')}
+
+${scripts.add('',
+ '',
+ '',
+ '')}
\ No newline at end of file