diff --git a/account/webmkusercert.in b/account/webmkusercert.in
new file mode 100644
index 0000000000000000000000000000000000000000..e59fc57e59bd52934ede347183352dbd67a2c82a
--- /dev/null
+++ b/account/webmkusercert.in
@@ -0,0 +1,25 @@
+#!/usr/bin/perl -w
+
+#
+# EMULAB-COPYRIGHT
+# Copyright (c) 2004 University of Utah and the Flux Group.
+# All rights reserved.
+#
+
+use English;
+
+#
+# This gets invoked from the Web interface. Simply a wrapper ...
+#
+
+#
+# Configure variables
+#
+my $TB       = "@prefix@";
+
+#
+# Run the real thing, and never return.
+# 
+exec "$TB/sbin/mkusercert", @ARGV;
+
+die("webmkusercert: Could not exec mkusercert: $!");